ctags的安装: 略
生成tags命令:
ctags -R *
安装taglist
下载地址: http://www.vim.org/scripts/script.php?script_id=273
wget 'http://www.vim.org/scripts/download_script.php?src_id=7701' -O taglist_45.zip
unzip taglist_45.zip
mv doc/ plugin/ ~/.vim/
可以用”:TlistOpen“打开taglist窗口,用”:TlistClose“关闭taglist窗口。或者使用”:TlistToggle“在打开和关闭间切换。在~/.vimrc中定义了下面的映射,使用<F9>键就可以打开/关闭taglist窗口:
map <silent> <F9> :TlistToggle<cr>
设置Tab键默认为4个空格的两种设置方法
1. 编辑~/.vimrc 添加
set ts=4
set sw=4
2. 编辑~./vimrc 添加
set ts=4
set expandtab
set autoindent
推荐使用第二种,按tab键时产生的是4个空格,这种方式具有最好的兼容性。