Ctrl + ] is to jump to the definition. Ctrl + T is to go back. What's the opposite of Ctrl + T?
+1
A:
The :tag
command will move you down the tag stack. It is not bound to a key combination, but you could map it yourself in your .vimrc file.
Dave Kirby
2010-05-25 07:27:32
+1
A:
:help tag-stack
:[count]po[p][!] Jump to [count] older entry in tag stack (default 1).
See |tag-!| for [!]. {not in Vi}
:[count]ta[g][!] Jump to [count] newer entry in tag stack (default 1).
See |tag-!| for [!]. {not in Vi}
You can also use ctrl + i
and ctrl + o
to move forwards and backwards respectively through the jump list. This works with tag commands since they count as jump movements.
So: jump to a tag ctrl + ]
jump back: ctr + o
jump to tag again ctrl + i
:help jump-motions
bc17
2010-05-25 16:06:02
It's worth noting that `CTRL + i` is the same as `tab` (for most terminals).
too much php
2010-05-25 21:55:21