ctags用来跳转, taglist用来列出当前文件的变量, 函数, 宏. cscope用来查找符号
一 使用ctags
1 在源码目录创建tag文件
cd /home/kenby/project/nginx-1.0.0/src
ctags -R
2 打开一个文件
gvim core/ngx_string.c
把光标移到变量名或函数名上,然后按下"Ctrl-]"。用"Ctrl-o"退回原来的地方。
二 使用taglist
打开一个文件, 并输入命令, vim就会产生一栏显示该文件的变量和函数
gvim core/ngx_string.c
:Tlist
三 使用cscope
1 生成 cscope.files
cd /
find /home/kenby/project/nginx-1.0.0/src -name '*.c' -o -name "*.h" > /home/kenby/project/nginx-1.0.0/src/cscope.files
2 生成 cscope.out
cd /home/kenby/project/nginx-1.0.0/src
cscope -b -q -k
这样在源码目录下产生一些 .out 索引文件
3 打开一个文件
gvim core/ngx_string.c
4 添加索引
:cs add cscope.out
5 输入下列命令, 试用cscope强大的查找功能
:cs f c ngx_log_error 查找此函数被哪些函数调用过
:cs f d ngx_log_error 查找此函数调用了哪些函数
:cs f g ngx_log_error 查找变量名或函数名的定义处
:cs f s ngx_log_error 查找该符号出现的地方
:cs f t variable 查找给该变量赋值的地方
四 vimrc配置文件
使用cscope, 每次都输入那么长的命令, 实在很伤手, 在vimrc配置一些快捷键:
if has("cscope")
set csprg=/usr/bin/cscope
set csto=1
set cst
set nocsverb
" add any database in current directory
if filereadable("cscope.out")
cs add cscope.out
endif
set csverb
endif
nmap
nmap
nmap
nmap
nmap
nmap
nmap
nmap