Last Updated: February 25, 2016
·
525
· alexparamonov

Go to declaration using tags

VIM can use tags to navigate thought source code better.
You need ctags installed on your linux machine.

If you did not automate ctags generation you may use manuall trigger to create them:

" CTags
noremap <leader>rt :!ctags -f tags --extra=+f --exclude=tmp --exclude=log -R *<CR><CR>