Install vim, ctags, cscope and taglist

Backup for vim tool.
/*----------------------------------------------
* vim, ctags, cscope, taglist
*-----------------------------------------------*/

#sudo apt-get install vim
#sudo apt-get install ctags
#sudo apt-get install cscope

/*----------------------------------------------
* Download taglist from http://vim-taglist.sourceforge.net
* Extract talist*.zip and there are
* "doc/taglist.txt" and "/plugin/taglist.vim"
* Copy both of them to "~/.vim" (mkdir this if need)
*-----------------------------------------------*/

#tar -xvf taglis*.zip
#cp doc/taglist.txt ~/.vim/doc
#cp plugin/taglist.vim ~/.vim/plugin

/* Add hot-key "F9" switch taglist */

#vi /etc/vim/vimrc

insert "map <f9> :Tlist&ltcr>" at the bottom



source:
http://stenlyho.blogspot.com/2008/11/ubuntuvim-plugin-ctagstaglist.html

Related Posts

Previous
Next Post »