├── .gitignore ├── LICENCE ├── README.mkd ├── doc └── rooter.txt ├── plugin └── rooter.vim └── test ├── README.markdown ├── runner.vim ├── test └── test_rooter.vim /.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | test/*.log 3 | 4 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airblade/vim-rooter/HEAD/LICENCE -------------------------------------------------------------------------------- /README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airblade/vim-rooter/HEAD/README.mkd -------------------------------------------------------------------------------- /doc/rooter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airblade/vim-rooter/HEAD/doc/rooter.txt -------------------------------------------------------------------------------- /plugin/rooter.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airblade/vim-rooter/HEAD/plugin/rooter.vim -------------------------------------------------------------------------------- /test/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airblade/vim-rooter/HEAD/test/README.markdown -------------------------------------------------------------------------------- /test/runner.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airblade/vim-rooter/HEAD/test/runner.vim -------------------------------------------------------------------------------- /test/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airblade/vim-rooter/HEAD/test/test -------------------------------------------------------------------------------- /test/test_rooter.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airblade/vim-rooter/HEAD/test/test_rooter.vim --------------------------------------------------------------------------------