├── LICENSE ├── README.md ├── autoload └── denite │ └── git.vim ├── doc └── denite-git.txt └── rplugin └── python3 └── denite └── source ├── gitbranch.py ├── gitchanged.py ├── gitfiles.py ├── gitlog.py └── gitstatus.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/denite-git/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/denite-git/HEAD/README.md -------------------------------------------------------------------------------- /autoload/denite/git.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/denite-git/HEAD/autoload/denite/git.vim -------------------------------------------------------------------------------- /doc/denite-git.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/denite-git/HEAD/doc/denite-git.txt -------------------------------------------------------------------------------- /rplugin/python3/denite/source/gitbranch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/denite-git/HEAD/rplugin/python3/denite/source/gitbranch.py -------------------------------------------------------------------------------- /rplugin/python3/denite/source/gitchanged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/denite-git/HEAD/rplugin/python3/denite/source/gitchanged.py -------------------------------------------------------------------------------- /rplugin/python3/denite/source/gitfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/denite-git/HEAD/rplugin/python3/denite/source/gitfiles.py -------------------------------------------------------------------------------- /rplugin/python3/denite/source/gitlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/denite-git/HEAD/rplugin/python3/denite/source/gitlog.py -------------------------------------------------------------------------------- /rplugin/python3/denite/source/gitstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/denite-git/HEAD/rplugin/python3/denite/source/gitstatus.py --------------------------------------------------------------------------------