ubuntu 配置 taglist

1. 安装 ctags

方法一:

#sudo apt-get install exuberant-ctags

方法二:

 download ctags-5.7.tag.gz
 #tar xzvf ctags-5.7.tag.gz
 #cd ctags-5.7
 #./configure
 #make
 #sudo make instal

2. 安装taglist

1) download taglist from http://www.vim.org/scripts/script.php?script_id=273

2) upzip taglist_45.zip, and the tree is as follows,

taglist_45/
├── doc
│   └── taglist.txt
└── plugin
    └── taglist.vim


3) copy the doc and plugin to $HOME/.vim, if the directory .vim do not exist, mkdir first.

#mkdir $HOME/.vim
#cp taglist_45/* $HOME/.vim



你可能感兴趣的:(linux)