在 OSX 中使用 vim 与 taglist 和 ctags
我在 OSX 中为 vim 安装了 taglist 和 ctags。看上去很酷,但是用起来却很难。一方面,当我在标签列表窗口中选择一个标签后,它会跳转到代码,但随后我不知道如何返回标签列表窗口以选择另一个要转到的位置。你怎么做到的?您建议进行哪些更改以使其更易于使用?
I installed taglist and ctags for vim in OSX. It looks cool, but it's hard to use. For one thing, after I select a tag in the taglist window, it jumps to the code, but then I don't know how to get back to the taglist window to select another place to go to. How do you do that? What are some changes you recommend making so that this is easier to use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我在 .vimrc 中使用以下配置:
您可以使用
t
在代码和列表之间快速切换,以显示或隐藏标签列表窗口。其他选项仅代表个人喜好。
I am using the following configuration in my .vimrc :
You can switch back and forth between code and list quickly with
<Leader>t
to display or hide the taglist window.The other options are personal preferences only.
您可以使用 Ctrl+w 和移动键 hjk 在窗口之间移动>l
You can move between windows using Ctrl+w and the movement keys hjkl
要在跳转到标签后返回,请使用 Ctrl+T。有关标签导航的更多信息,请参阅 Vim wiki 上的浏览带有标签的程序。
To go back after jumping to a tag, use Ctrl+T. For more information on tag navigation, see Browsing programs with tags on the Vim wiki.
p
可让您返回到上一个窗口。我推荐 Xavier T. 的配置。
<C-w>p
lets you go back to the previous window.And I recommend Xavier T.'s configuration.