Env:Cscope安装与配置

1. 介绍

Cscope是类似于ctags一样的工具,但可认为他是ctags的增强版。

2. 安装

  • sudo apt-get install cscope
  • 通过源码安装,参照http://blog.csdn.net/hpwzd/article/details/7405401

3. 配置

  • 在源码所在目录下,执行cscope -Rbkq 会生成三个文件:cscope.out/csope.in.out/cscope.po.out
  • 在Vimrc中添加如下一段话,其中/usr/bin/cscope为可执行文件所在目录,如果没有vimrc,那就新建,可以通过whereis查看:
  •  1 "......................................cscope...........................       
     2 if has("cscope")
     3     set csprg=/usr/bin/cscope
     4     set csto=0
     5     set cst
     6     set nocsverb
     7     " add any database in current directory
     8     if filereadable("cscope.out")
     9     cs add cscope.out
    10     " else add database pointed to by environment
    11     elseif $CSCOPE_DB!=""
    12         cs add $CSCOPE_DB
    13     endif
    14     set csverb
    15 endif
    16 "....................................cscope replace
    17 nmap s :cs find s =expand("")
    18 nmap g :cs find g =expand("")
    19 nmap c :cs find c =expand("")
    20 nmap t :cs find t =expand("")
    21 nmap e :cs find e =expand("")
    22 nmap f :cs find f =expand("")
    23 nmap i :cs find i =expand("")
    24 nmap d :cs find d =expand("")

    使用方法是,同时按下Ctrl+@后松开按下's':

    • Ctrl+@-> s ---- 查找C语言符号,即查找函数名、宏、枚举值等出现的地方
    • Ctrl+@-> g ---- 查找函数、宏、枚举等定义的位置,类似ctags所提供的功能
    • Ctrl+@-> d ---- 查找本函数调用的函数
    • Ctrl+@-> c ---- 查找调用本函数的函数
    • Ctrl+@-> t  ---- 查找指定的字符串
    • Ctrl+@-> e ---- 查找egrep模式,相当于egrep功能,但查找速度快多了
    • Ctrl+@->  f ---- 查找并打开文件,类似vim的find功能
    • Ctrl+@->  i ---- 查找包含本文件的文

需要注意的是:

  • 打开源文件需要在cscope.out路径下打开,如$ vi ./drivers/tty/serial/imx.c而不是到serial目录下执行$ vi imx.c.否则会出现找不到cscope.
  • 查找进入新的文件后,退回去快捷键:Ctrl+t.

你可能感兴趣的:(Env:Cscope安装与配置)