1. 下载 winmanager.zip
2. 将 winmanager.zip拷贝至~/.vim目录中,解压
3. 解压后将在~/.vim/plugin中出现如下文件:
[email protected]:~/.vim# ls -a
. .. doc plugin taglist_46.zip .viminfo .vimrc winmanager.zip
[email protected]:~/.vim# ls plugin/ -l
total 248
-rw-r--r-- 1 root root 152242 2月 26 2013 taglist.vim
-rw-r--r-- 1 root root 39277 4月 4 2002 winfileexplorer.vim
-rw-r--r-- 1 root root 39499 4月 4 2002 winmanager.vim
-rw-r--r-- 1 root root 13399 4月 4 2002 wintagexplorer.vim
[email protected]:~/.vim#
这样插件边安装好了,接下来就是如何配置和使用了
4. 在~/.vim/.vimrc中增加如下设置:
"""""""""""""""""""""""""""""""
"" winManager setting
"""""""""""""""""""""""""""""""
"设置界面分割
"let g:winManagerWindowLayout = "BufExplorer,FileExplorer|TagList"
let g:winManagerWindowLayout = "TagList|FileExplorer,BufExplorer"
"设置winmanager的宽度,默认为25
let g:winManagerWidth = 30
"定义打开关闭winmanager按键
nmap <silent> <F8> :WMToggle<cr>
以上插件安装设置完毕后,基本的界面功能就可以实现了。
按F8可以打开/关闭界面。
同时显示taglist和fileexplorer。在fileexplorer窗口中按<c-n>可以切换到bufexplorer窗口。
5. 目前,vim 打开一个文件后,执行如下三个命令:
set tags=/study/linux-git/linux-git/linux-3.18.3/tags
:Tlist
:WMToggle
就把Ctags、taglist和WinManager三个插件给用起来了
主要还是将三个工具用熟练