编辑时更新 ctag
可能的重复:
Vim 自动生成 ctag
我使用 ctags
一段时间了。我注意到,当我创建新函数或方法时,它们不会更新为 ctags
脚本。
当我想使用
:ta newFunctioName
时它不起作用。
如何刷新我的 ctags 或设置一些自动刷新?
谢谢
Possible Duplicate:
Vim auto-generate ctags
I'm using ctags
for a while. I noticed that when I create new functions or methods they aren't updated to ctags
script.
When I want to use
:ta newFunctioName
it does not work.
How can I refresh my ctags or set some automatic refreshing?
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自动标记 是一个 vim 插件,可以在保存时更新现有标记文件。
我已经使用它很多年了,没有任何问题,除了它强制限制标签文件的最大大小。不过,除非您有非常大量代码全部索引在同一个标签文件中,否则您不应该达到该限制。
请注意,自动标记需要 vim 中的 Python 支持。
Auto Tag is a vim plugin that updates existing tag files on save.
I've been using it for years without problems, with the exception that it enforces a maximum size on the tags files. Unless you have a really large set of code all indexed in the same tags file, you shouldn't hit that limit, though.
Note that Auto Tag requires Python support in vim.