I use vim with gtags plug in to read code through multiple files. Everything is okay except that I donnot know how to navigate back to the previous position before I run :CtagsCursor to jump to the token definition. I read through the GNU global online docs, but find nothing useful. But in the chapter "3.4 Elvis using GLOBAL", it says "CTRL-T return to the most recent tag context.", which is exactly what I wants. No idea why the function is not implemented for vim, or something is wrong with me?
BR, Ruochen
I solved the problem by using
gtags-cscope
ascscopeprog
. Additionally I activated cscopetag to use cscope for ctag lookup in vim, too. This way, if you press<C-]>
you search for the declaration in gtags and<C-t>
to go back again.For lookups of references, which I mapped to
<C-\>
, I use the quickfix window. This does not use the tag stack and<C-t>
will not work.I tried it, using the tag stack, but this leads to a cluttered tag stack and a large selection window. If you lookup multiple references you have to press
<C-t>
multiple time, that's why I decided using the quickfix approach instead.Here is my actual config.
If you like to give the reference lookup without quickfix a try, remove the
c-
option incscopequickfix
.Another hint,
cscopeverbose
is a option to print error messages when using cscope. Otherwise you won't get errors (e.g. no gtags file added, or symbol not found).EDIT 1:
To load a GTAGS file, use the built-in command
cs add ./GTAGS
.