Quick ctags question. Google did not reveal the answer. Ctags is awesome to browse a complete source file. But what about a file that is currently being worked on. Is there a way to dynamically update the ctags file each time a new function/variable is added?
Quick ctags question. Google did not reveal the answer. Ctags is awesome to browse
Share
You can write an
autocmdthat is triggered afterxseconds of inactivity or after each<Esc>:But it is a bit messy.
See
:help autocmdfor more information and a list of possible events.Also see the EasyTags plugin (that I use), or AutoTag, or Indexer which are a lot cleaner and smarter.