Excerpts from H Xu's message of Fri Jul 09 20:22:07 +0200 2010:
> I want to generate tags by using ctags automatically after I save the
> file, and I want tags to be generated in another thread, so it won't
> affect my current work.
If you're on linux you can use sh background processes:
! ctags -R . &
or system ('ctags -R . &')
You can run them within an autocommand easily
Marc Weber
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php