玩转vim之使用ctags和taglist[注意,在中文目录下可能无效]

本文介绍了如何在Vim中利用ctags和taglist插件进行代码导航。首先,详细说明了ctags的安装与配置,通过`ctags -R`命令生成tags文件。然后,在Vim中设置tags文件路径,使用快捷键`ctrl+]`跳转到函数或变量定义,`ctrl+t`返回。接着,讨论了启用taglist插件的条件,并提供了下载、安装与配置的步骤,通过`:TlistOpen`命令展示taglist窗口,提高代码浏览体验。
摘要由CSDN通过智能技术生成

heeh


fist step:   ctags first


download ctags first.then uppack it ............

there has a exe file,named ctags.exe

set a environment variable for ctags.exe


then open cmd ,go to ur source code folder


type "ctags -R",then Enter


it will generate a tags file named "tags" for the folder and all of his sub folder

then go to VIM

use the following command

:tags=D:\test\vim\tags


here D\test'\vim\tags is my tags file generated by ctags

then go to VIM,open ur source code file,i n my computer is D;\test'\vim\src\main.c


then the tags files is useful..


   u can use ctrl+] to go to the definition of funciton,variable,etc...

use ctrl+t back to the use of function,variabl,etx................



then how to use taglist 

打开VIM的文件类型自动检测功能;
2. 系统中装了Exuberant ctags工具,并且taglist能够找到此工具(因为taglist需要调用它来生成tag文件);
3. 你的VIM支持system()调用;

在本系列第3篇文章(vimrc)中,我们使用了VIM自带的示例vimrc,这个vimrc中已经打开了文件类型检测功能;在上篇文章中,我们也已用到了Exuberant ctags;system()调用在一般的VIM版本都会支持(只有suse Linux发行版中出于安全考虑,关闭了此功能),所以我们已经满足了这三个条件。

 现在我们到http://www.vim.org/scripts/script.php?script_id=273下载最新版本的taglist plugin,目前版本是4.3。

下载后,把该文件在~/.vim/目录中解压缩,这会在你的~/.vim/plugin和~/.vim/doc目录中各放入一个文件:

       plugin/taglist.vim – taglist插件

       doc/taglist.txt    - taglist帮助文件

:windows用户需要把这个插件解压在你的$VIM/vimfiles或$HOME/vimfiles目录。

 
使用下面的命令生成帮助标签(下面的操作在VIM中进行):

:helptags ~/.vim/doc 

生成帮助标签后,你就可以用下面的命令查看taglist的帮助了:

:help taglist.txt 

Taglist提供了相当多的功能,我的vimrc中这样配置:

   """"""""""""""""""""""""""""""
   " Tag list (ctags)
   """"""""""""""""""""""""""""""
   if MySys() == "windows"                "设定windows系统中ctags程序的位置
     let Tlist_Ctags_Cmd = 'ctags'
   elseif MySys() == "linux"              "设定linux系统中ctags程序的位置
     let Tlist_Ctags_Cmd = '/usr/bin/ctags'
   endif
   let Tlist_Show_One_File = 1            "不同时显示多个文件的tag,只显示当前文件的
   let Tlist_Exit_OnlyWindow = 1          "如果taglist窗口是最后一个窗口,则退出vim
   let Tlist_Use_Right_Window = 1         "在右侧窗口中显示taglist窗口 

这样配置后,当你输入“:TlistOpen”时,显示出taglist的窗口:











评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值