VIM:如何在匹配的标签之间移动?
我是ctags的忠实粉丝,但有时很难使用它。
如果我有一些同名的函数声明 - “ctrl + ]” 会让你看到第一次出现 - 这并不总是我需要的。
如何查看匹配标签的完整列表,以便选择要打开的标签?
I'm a big fan of ctags, but sometimes it is hard to use it.
In case when I have a few declaration of the functions with the same name - "ctrl + ]" throws you to the first occurrence - which is not always what I need.
How can I see the full list of matching tags so I can choose which one to open?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 gCtrl] 而不是 Ctrl] 将显示标签列表如果有多个与光标下的单词匹配。
Using gCtrl] instead of Ctrl] will show you a list of tags if there is more than one that matches the word under the cursor.
:ts
显示最后请求的标签的标签,或者您可以给它一个参数来搜索特定标签。:ts
shows the tags for the last tag requested, or you can give it an argument to search for a specific tag.