This plugin was born from a little requirement of myself more than 10 years ago. After many changes then it become an usable plugin. I got many helps from the lovely people all over the world during the time. Thank you guys for all the help!
For personal reason, I already migrate to lsp for a very long time. I haven't use ctags/gtags for years. Maybe it's time to say goodbye to this plugin.
青山不改,绿水长流,我们后会有期。
Async plugin for Vim/NeoVim to ease the use of ctags/gtags.
It is used for generate and maintain tags for you with multiple platform support, tested on Windows/Linux/macOS.
gen_tags.vim will detect SCM(git, hg, svn) root and use it as the project root path. But you can also create a folder named as .root to specify a directory as the project root path.
Generate/Update ctags and gtags will run in background.
GNU global(aka gtags) is more powerful than ctags, which support definition, reference, calling, called, include, string and etc, but ctags only support definition.
As we can use GNU global why did I still support ctags in this plugin?
That's because GNU global only support 6 languages (C, C++, Yacc, Java, PHP4 and assembly) natively.
ctags can support more languages(41 showed on the website).
Actually global can support more languages with Pygments plugin parser, for more details please refer PLUGIN_HOWTO.pygments in global document.
-
Add
call dein#add('jsfaint/gen_tags.vim')to your vimrc
Then launchvim/nvimand run:call dein#install() -
Add
Plug 'jsfaint/gen_tags.vim'to your vimrc
Then launchvim/nvimand run:PlugInstall -
Traditional method
Unzip the zip file under your .vim(*unix) or vimfiles(windows) directory.
-
:GenCtagsGenerate ctags database
-
:EditExtEdit an extend configuration file for this project, use for add third-party library ctags database
The extend database will be generate automatically.e.g.: For libpcap under
e:\src\libpcap-1.3.0add the following content toext.confe:/src/libpcap-1.3.0
-
:ClearCtags:ClearCtags Remove tags files. :ClearCtags! Remove all files, include the db dir
GTAGS support the third-party library by set an environment variable GTAGSLIBPATH
But you can take a more straightforward way to do the same thing, by create a symbol link of the library
-
Linux/macOS
ln -s /usr/include/ . -
Windows
mklink /J include C:\TDM-GCC-32\include
-
:GenGTAGSGenerate GTAGS
-
:ClearGTAGS:ClearGTAGS Remove GTAGS files :ClearGTAGS! Remove all files, include the db dir
ctrl+] is the default mapping support by Vim for definition
The following mapping is set for gtags when g:gen_tags#gtags_default_map is 1,
which uses the cscope interface .
Ctrl+\ c Find functions calling this function
Ctrl+\ d Find functions called by this function
Ctrl+\ e Find this egrep pattern
Ctrl+\ f Find this file
Ctrl+\ g Find this definition
Ctrl+\ i Find files #including this file
Ctrl+\ s Find this C symbol
Ctrl+\ t Find this text string
For more details about the usage, please refer to the help document in vim by :help gen_tags.vim
Thanks for reading :)
If you like this plugin, please star it on github!
And one more thing, bug reports and pull-requests are greatly appreciated :)