赞
踩
git clone [https://github.com/VundleVim/Vundle.vim.git](https://github.com/VundleVim/Vundle.vim.git) ~/.vim/bundle/Vundle.vim
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
call vundle#end()
git clone https://github.com/universal-ctags/ctags.git
#打开ctags/
$ cd ctags/
#执行以下指令
$ ./autogen.sh
$ ./configure --prefix=/where/you/want # defaults to /usr/local
#特别注意如果是非root权限执行make install会报错,因为需要把一些文件写入用到sudo权限
#非root权限替换为./configure --prefix=$HOME/.local
$ make
$ make install
#end 至此完成ctags安装
#安装插件
call vundle#begin()
Plugin 'majutsushi/tagbar'
call vundle#end()
#配置
let tagbar_left =1
let tagbar_width =40
#侧边栏显示行码
let g:tagbar_show_linenumbers = 1
let g:tagbar_ctags_bin='/usr/bin/ctags'
#快捷键"tt"打开函数列表
nnoremap tt :TagbarToggle<cr><C-W>h
#快捷键"oo"当前操作窗口切换到函数列表框
nnoremap oo :TagbarOpen fj<cr><C-W>h
autocmd BufReadPost *.cpp,*.c,*.h,*.hpp,*.cc,*.cxx call tagbar#autoopen()
1.打开.vimrc,写入
call vundle#begin()
Plugin 'kien/ctrlp.vim’
call vundle#end()
#配置
nmap ,, :CtrlP getcwd()<cr> #快捷键",,"启动ctrlp
#ctrl+B 可以切换搜索的范围是 当前目录还是 搜索历史
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。