up vote 6 down vote favorite
1
share [g+] share [fb]

When I make a change to a file, for example, add a function, how can I make the taglist automatically update the "tag list" in its windows after I save the change?

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

I adapted my setup from the C++ code completion vim tip.

map <C-F12> :!ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .<CR>

When needed, I press Ctrl-F12 to regenerate tags.

If you're using vim-taglist, you could add to your .vimrc an autocommand for the BufWritePost event to update the taglist window after every save:

autocmd BufWritePost *.cpp :TlistUpdate
link|improve this answer
Minor correction. The key-combination will be Ctrl-F12 and not F12 as mentioned by you. – codeRain Jan 7 '10 at 11:26
Thanks! Fixed and added more info. – Greg Bacon Jan 7 '10 at 11:37
feedback

Haven't tested, but you could try something like:

au BufWritePre     *.cpp ks|!ctags %

Which basically executes ctags when the buffer for a file ending in .cpp gets saved(:w).

link|improve this answer
feedback

I did write a little experimental script that automatically and incrementally updates, the "current" tags file on file saving.

(The question is actually redundant with http://stackoverflow.com/questions/155449/vim-auto-generate-ctags )

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.