An open API service indexing awesome lists of open source software.

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

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`.