Something about my own studies, programming notes, and also English writing exercise.
Sunday, October 25, 2009
[SW] Taglist -- a Vim plugin for browsing the source code
To make Vim handier for programming, the taglist is a good choice. It works with Exuberant Ctags to make you browse the variables, functions, or classes of the source code easily.
Just make sure you have installed Exuberant Ctags: $ sudo apt-get install exuberant-ctags
It's a good idea to set hot-key to toggle the TlistToggle function (use <F12> as the example): nnoremap :TlistToggle nnoremap <F12> :TlistToggle <CR>
No comments:
Post a Comment