1

With cscope integrated Vim, I can navigate back using the ctrl-T and see the current tag stack position using :tags. But how do I go forward in the stack? The only thing I could find from the man pages is to go to the function definition (like ctrl-])

4

2 回答 2

1

您还可以使用 Ctrl+I 和 Ctrl+O 分别在跳转列表中向前和向后移动。这适用于标签命令,因为它们算作跳跃动作。

所以:

跳转到一个标签:Ctrl+]. 跳转回来:Ctrl+O. 再次跳转到一个标签:Ctrl+I.

于 2013-10-04T06:52:38.390 回答
1

没有默认键映射,但在标签堆栈中前进的命令是:tag. (您可以轻松:nnoremap获得它的密钥。)

正如Chetan Potdar 已经回答的那样,只要你不在标签跳转之间的缓冲区中移动,你也可以使用<C-I>代替。

于 2013-10-04T07:11:12.500 回答