├── .gitignore ├── LICENSE ├── README.md ├── autoload ├── .project_tags.config.vim ├── project_tags.vim └── project_tags_tags_file.vim ├── plugin ├── .project_tags.config.vim └── project_tags.vim ├── static test data ├── Collections-C │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README.md │ ├── TODO │ ├── autogen.sh │ ├── configure.ac │ ├── install-sh │ ├── src │ │ ├── Makefile.am │ │ ├── array.c │ │ ├── array.h │ │ ├── common.c │ │ ├── common.h │ │ ├── deque.c │ │ ├── deque.h │ │ ├── hashset.c │ │ ├── hashset.h │ │ ├── hashtable.c │ │ ├── hashtable.h │ │ ├── list.c │ │ ├── list.h │ │ ├── queue.c │ │ ├── queue.h │ │ ├── slist.c │ │ ├── slist.h │ │ ├── stack.c │ │ ├── stack.h │ │ ├── treeset.c │ │ ├── treeset.h │ │ ├── treetable.c │ │ └── treetable.h │ └── test │ │ ├── Makefile.am │ │ ├── array_test.c │ │ ├── deque_test.c │ │ ├── hashset_test.c │ │ ├── hashtable_test.c │ │ ├── list_test.c │ │ ├── queue_test.c │ │ ├── slist_test.c │ │ ├── stack_test.c │ │ ├── test.c │ │ ├── test.h │ │ ├── treeset_test.c │ │ └── treetable_test.c ├── another_class.php ├── exclude_dir_project.vim ├── fake tag files │ └── not empty │ │ └── .phptags ├── include_dir_project.vim └── supported_file.php └── tests ├── when_no_project_file_exists_and_saving_php_file.vim ├── when_no_project_file_exists_and_saving_txt_file.vim ├── when_project_file_exists_and_2_php_files_exist_and_saving_php_file.vim ├── when_project_file_exists_and_saving_php_file.vim ├── when_project_file_exists_and_saving_txt_file.vim ├── when_specifying_exclude_dir.vim ├── when_specifying_include_dir_and_saving_code_from_the_project_dir.vim ├── when_working_with_c_project_and_project_file_exists_and_saving_c_file.vim └── when_working_with_c_project_and_project_file_exists_and_saving_h_file.vim /.gitignore: -------------------------------------------------------------------------------- 1 | vimtags 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/README.md -------------------------------------------------------------------------------- /autoload/.project_tags.config.vim: -------------------------------------------------------------------------------- 1 | let g:project_tags_include= ['../plugin'] 2 | -------------------------------------------------------------------------------- /autoload/project_tags.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/autoload/project_tags.vim -------------------------------------------------------------------------------- /autoload/project_tags_tags_file.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/autoload/project_tags_tags_file.vim -------------------------------------------------------------------------------- /plugin/.project_tags.config.vim: -------------------------------------------------------------------------------- 1 | let g:project_tags_include= ['../autoload'] 2 | -------------------------------------------------------------------------------- /plugin/project_tags.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/plugin/project_tags.vim -------------------------------------------------------------------------------- /static test data/Collections-C/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/.gitignore -------------------------------------------------------------------------------- /static test data/Collections-C/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/.travis.yml -------------------------------------------------------------------------------- /static test data/Collections-C/AUTHORS: -------------------------------------------------------------------------------- 1 | Srđan Panić 2 | -------------------------------------------------------------------------------- /static test data/Collections-C/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/CONTRIBUTING.md -------------------------------------------------------------------------------- /static test data/Collections-C/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/COPYING -------------------------------------------------------------------------------- /static test data/Collections-C/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static test data/Collections-C/INSTALL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static test data/Collections-C/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src test 2 | ACLOCAL_AMFLAGS = -I m4 3 | -------------------------------------------------------------------------------- /static test data/Collections-C/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static test data/Collections-C/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static test data/Collections-C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/README.md -------------------------------------------------------------------------------- /static test data/Collections-C/TODO: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static test data/Collections-C/autogen.sh: -------------------------------------------------------------------------------- 1 | autoreconf --force --install 2 | -------------------------------------------------------------------------------- /static test data/Collections-C/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/configure.ac -------------------------------------------------------------------------------- /static test data/Collections-C/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/install-sh -------------------------------------------------------------------------------- /static test data/Collections-C/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/Makefile.am -------------------------------------------------------------------------------- /static test data/Collections-C/src/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/array.c -------------------------------------------------------------------------------- /static test data/Collections-C/src/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/array.h -------------------------------------------------------------------------------- /static test data/Collections-C/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/common.c -------------------------------------------------------------------------------- /static test data/Collections-C/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/common.h -------------------------------------------------------------------------------- /static test data/Collections-C/src/deque.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/deque.c -------------------------------------------------------------------------------- /static test data/Collections-C/src/deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/deque.h -------------------------------------------------------------------------------- /static test data/Collections-C/src/hashset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/hashset.c -------------------------------------------------------------------------------- /static test data/Collections-C/src/hashset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/hashset.h -------------------------------------------------------------------------------- /static test data/Collections-C/src/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/hashtable.c -------------------------------------------------------------------------------- /static test data/Collections-C/src/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/hashtable.h -------------------------------------------------------------------------------- /static test data/Collections-C/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/list.c -------------------------------------------------------------------------------- /static test data/Collections-C/src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/list.h -------------------------------------------------------------------------------- /static test data/Collections-C/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/queue.c -------------------------------------------------------------------------------- /static test data/Collections-C/src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/queue.h -------------------------------------------------------------------------------- /static test data/Collections-C/src/slist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/slist.c -------------------------------------------------------------------------------- /static test data/Collections-C/src/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/slist.h -------------------------------------------------------------------------------- /static test data/Collections-C/src/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/stack.c -------------------------------------------------------------------------------- /static test data/Collections-C/src/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/stack.h -------------------------------------------------------------------------------- /static test data/Collections-C/src/treeset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/treeset.c -------------------------------------------------------------------------------- /static test data/Collections-C/src/treeset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/treeset.h -------------------------------------------------------------------------------- /static test data/Collections-C/src/treetable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/treetable.c -------------------------------------------------------------------------------- /static test data/Collections-C/src/treetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/src/treetable.h -------------------------------------------------------------------------------- /static test data/Collections-C/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/test/Makefile.am -------------------------------------------------------------------------------- /static test data/Collections-C/test/array_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/test/array_test.c -------------------------------------------------------------------------------- /static test data/Collections-C/test/deque_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/test/deque_test.c -------------------------------------------------------------------------------- /static test data/Collections-C/test/hashset_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/test/hashset_test.c -------------------------------------------------------------------------------- /static test data/Collections-C/test/hashtable_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/test/hashtable_test.c -------------------------------------------------------------------------------- /static test data/Collections-C/test/list_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/test/list_test.c -------------------------------------------------------------------------------- /static test data/Collections-C/test/queue_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/test/queue_test.c -------------------------------------------------------------------------------- /static test data/Collections-C/test/slist_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/test/slist_test.c -------------------------------------------------------------------------------- /static test data/Collections-C/test/stack_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/test/stack_test.c -------------------------------------------------------------------------------- /static test data/Collections-C/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/test/test.c -------------------------------------------------------------------------------- /static test data/Collections-C/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/test/test.h -------------------------------------------------------------------------------- /static test data/Collections-C/test/treeset_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/test/treeset_test.c -------------------------------------------------------------------------------- /static test data/Collections-C/test/treetable_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/Collections-C/test/treetable_test.c -------------------------------------------------------------------------------- /static test data/another_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/another_class.php -------------------------------------------------------------------------------- /static test data/exclude_dir_project.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/exclude_dir_project.vim -------------------------------------------------------------------------------- /static test data/fake tag files/not empty/.phptags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/fake tag files/not empty/.phptags -------------------------------------------------------------------------------- /static test data/include_dir_project.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/still-dreaming-1/vim-project-tags/HEAD/static test data/include_dir_project.vim -------------------------------------------------------------------------------- /static test data/supported_file.php: -------------------------------------------------------------------------------- 1 |