Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
快速 ctags 问题。谷歌没有透露答案。Ctags 非常适合浏览完整的源文件。但是当前正在处理的文件呢?有没有办法在每次添加新函数/变量时动态更新 ctags 文件?
您可以编写一个在几秒不活动后或每次后autocmd触发的:x<Esc>
autocmd
x
<Esc>
autocmd CursorHold *.js :!ctags -R .
但这有点乱。
有关:help autocmd更多信息和可能事件的列表,请参阅。
:help autocmd
另请参阅EasyTags插件(我使用的)或AutoTag或Indexer,它们更清洁、更智能。
另请参阅TagList插件 - 评价最高和下载次数最多的插件;)