码迷,mamicode.com
首页 > 系统相关 > 详细

VIM集成Ctags和Taglist

时间:2014-10-18 17:01:07      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   sp   

  作者:zhanhailiang 日期:2014-10-18

1. 安装ctags:

# ctags --help
Exuberant Ctags 5.8, Copyright (C) 1996-2009 Darren Hiebert
  Compiled: Nov 11 2010, 03:54:52
  Addresses: <dhiebert@users.sourceforge.net>, http://ctags.sourceforge.net
  Optional compiled features: +wildcards, +regex

2. 配置.vimrc:

[root@AY140321223706700af3Z src]# cat ~/.vimrc 
"" ctags
map <C-F12> :!ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .<CR>

3. 安装Taglist:

[root@AY140321223706700af3Z src]# mkdir ~/.vim
[root@AY140321223706700af3Z src]# cd ~/.vim
[root@AY140321223706700af3Z .vim]# wget http://heanet.dl.sourceforge.net/project/vim-taglist/vim-taglist/4.6/taglist_46.zip
[root@AY140321223706700af3Z .vim]# unzip taglist_46.zip
[root@AY140321223706700af3Z .vim]# cat ~/.vimrc 
...
"" taglist
let Tlist_Show_One_File=1
let Tlist_Exit_OnlyWindow=1
nnoremap <F8> :TlistToggle<CR>

4. 快捷键说明: ctags:

Ctrl-]    跳转到光标所在符号的定义。
Ctrl-t    回到上次跳转前的位置。

TlistToggle:

F8        :TlistToggle

如下图:

bubuko.com,布布扣

接着通过Ctrl-w快捷键或鼠标点击在Taglist窗口和编辑区之间切换焦点,在Taglist窗口用键盘选择某个符号,然后回车,就可以跳转到该符号定义的位置。

VIM集成Ctags和Taglist

标签:style   blog   http   color   io   os   ar   for   sp   

原文地址:http://blog.csdn.net/billfeller/article/details/40212453

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!