Vim + Cscope打造Linux下的Source Insight

  Source Insight是Windows下最方便浏览代码的工具。但是Source Insight是没有Linux版本的。为了方便在Linux下浏览代码并进行学习,可以利用Vim配合Cscope来打造Linux下的Source Insight。

  Cscope是Vim适用的工具和插件,通过Cscope可以方便地获知某个函数的定义以及被哪些函数调用。

Cscope安装

  可以在http://cscope.sourceforge.net/下载源码包,然后解压,编译安装。

./configure

make

make install

生成Cscope数据库

  使用cscope前,必须为代码生成一个cscope数据库。假设当前代码在/usr/src/linux目录下,则运行下列命令。

cd /usr/src/linux

cscope –Rbq

  然后会生成3个文件:cscope.in.out,cscope.out,cscope.po.out。

  用vim打开代码文件,将刚才生成的cscope文件导入到vim中。

vim init/main.c

:cs add /usr/src/linux/cscope.out /usr/src/linux

  也可以将下面语句添加到vim的配置文件.vimrc中。

if fileradable("cscope.out")    cs add csope.outelseif $CSCOPE_DB  != ""    cs add $CSCOPE_DBendif

Cscope的功能

  Cscope的功能通过它的子命令“find”来实现。

cs find c|d|e|g|f|i|s|t name

s:查找C代码符号g:查找本定义d:查找本函数调用的函数c:查找调用本函数的函数t:查找本字符串e:查找本egrep模式f:查找本文件i:查找包含本文件的文件

  可以在.vimrc中添加下面的快捷键,免得每次都要输入一长串命令。

nmap <C-@>s :cs find s <C-R>=expand("<cword>")<CR><CR>nmap <C-@>g :cs find g <C-R>=expand("<cword>")<CR><CR>nmap <C-@>c :cs find c <C-R>=expand("<cword>")<CR><CR>nmap <C-@>t :cs find t <C-R>=expand("<cword>")<CR><CR>nmap <C-@>e :cs find e <C-R>=expand("<cword>")<CR><CR>nmap <C-@>f :cs find f <C-R>=expand("<cword>")<CR><CR>nmap <C-@>i :cs find i ^<C-R>=expand("<cword>")<CR>$<CR>nmap <C-@>d :cs find d <C-R>=expand("<cword>")<CR><CR>

  使用时,将光标停留在要查找的对象上,按下<C-@>g,即先按“Ctrl+@”,然后很快再按“g”,将会查找该对象的定义。

靠山山会倒,靠人人会跑,只有自己最可靠。

Vim + Cscope打造Linux下的Source Insight

相关文章:

你感兴趣的文章:

标签云: