https://github.com/heavenshell/vim-ctags-project
My ctags generator
https://github.com/heavenshell/vim-ctags-project
Last synced: 6 months ago
JSON representation
My ctags generator
- Host: GitHub
- URL: https://github.com/heavenshell/vim-ctags-project
- Owner: heavenshell
- License: bsd-3-clause
- Created: 2016-06-28T06:45:30.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-18T03:59:14.000Z (almost 10 years ago)
- Last Synced: 2025-03-06T02:12:11.670Z (over 1 year ago)
- Language: VimL
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ctags_project
=============
Generate ctag's tag file by each project.
Example.
```
project_a
├ .git
├ views.py
└ models.py
project_b
├ setup.py
├ views.py
└ models.py
```
```viml
let g:ctags_project_root_files = ['.git', 'setup.py']
```
If you are in `project_a/views.py`. and execute `:CtagsProject`then generate
tags to `~/.vim/tags/py/project_a/tags`.
If you are in `project_b/views.py`. and execute `:CtagsProject`then generate
tags to `~/.vim/tags/py/project_b/tags`.