3
4
5
6
|
#!/bin/bash
currentPath
=
$(pwd | sed
's$\/$\\\/$g'
)
echo $currentPath
find .
-
name
"*.h"
-
o
-
name
"*.c"
-
o
-
name
"*.cc"
-
o
-
name
"*.cpp"
| sed
"s/^\./$currentPath/"
> cscope.files
cscope
-
bkq
-
i cscope.files
ctags -R --c++-kinds=+p --fields=+iaS --extra=+q
|
软件下载:http://sourceforge.net/project/showfiles.php?group_id=4664
软件安装:
./configure --with-flex (注:如果平台是Linux,最好带上 --with-flex选项)
make (注:我没有遇到错误)
make install (注: 直接安装好了)
修改vim配置文件vimrc.你可以修改/etc/vimrc使用所有用户都使用本配置文件,当然你还可以修改~/.vimrc
下载配置文件:cscope_map.vim
把cscope_map.vim里从 if has("cscope") 到 endif里边的内容复制到/etc/vimrc里边去
里边的命令意思请看下边文章
建立cscope使用的索引文件
在你需要浏览源码的根目录下(如你想用cscope看linux源码)使用下面命令:
#: cscope -Rbkq<回车>
R 表示把所有子目录里的文件也建立索引
b 表示cscope不启动自带的用户界面,而仅仅建立符号数据库
q生成cscope.in.out和cscope.po.out文件,加快cscope的索引速度
k在生成索引文件时,不搜索/usr/include目录
在源码根目录下打开任意.c文件,使用如下命令:
Ctrl+]将跳到光标所在变量或函数的定义处 Ctrl+T返回
:cs find s ---- 查找C语言符号,即查找函数名、宏、枚举值等出现的地方
:cs find g ---- 查找函数、宏、枚举等定义的位置,类似ctags所提供的功能
:cs find d ---- 查找本函数调用的函数
:cs find c ---- 查找调用本函数的函数
:cs find t: ---- 查找指定的字符串
:cs find e ---- 查找egrep模式,相当于egrep功能,但查找速度快多了
:cs find f ---- 查找并打开文件,类似vim的find功能
:cs find i ---- 查找包含本文件的文
2的所以命令也可以且按銉来实现:
Ctrl+/ 再按 s 表示:cs find s命令
同理实现cs find + g,d,c,t,e,f,i命令
cscope_map.vim说明:
有英文注释的我就不说明了,我就说一下里边的键map映射
如: nmap <C-/>s :cs find s <C-R>=expand("<cword>")<CR><CR>
nmap 表示在vim的普通模式下,即相对于:编辑模块和可视模式,以下是几种模式
:map 普通,可视模式及操作符等待模式
:vmap 可视模式
:omap 操作符等待模式
:map! 插入和命令行模式
:imap 插入模式
:cmap 命令行模式
<C-/>表示:Ctrl+/
s表示输入(即按:s)s
: 表示输入':'
“cs find s"表示输入"cs find s"也即是要输入的命令
<C-R>=expand("cword")总体是为了得到:光标下的变量或函数。cword 表示:cursor word, 类似的还有:cfile表示光标所在处的文件名吧
<CR><CR>就是回车吧,不太清楚
其它的特补充吧。。今天就写到这里。
函数 foo() 调用了函数 bar(),想看看函数 bar() 的内容。
想知道 foo() 在什么地方被调用。
想知道一个结构类型的定义。
cscope -V
cscope: version 16.0a
cscope -V
dir /s /b *.c *.h > cscope.files
dir /s /b *.c *.h *cpp *.hpp > cscope.files
find $(pwd) -name "*.[ch]"
cscope -b
:cscope add D:\src\myproject\cscope.out
:cs a D:\src\myproject\cscope.out
:cscope show
:cs s
<C-\>s
Cscope tag: display
# line filename / context / line
1 342 D:\src\myproject\src\global.h <<GLOBAL>>
void display(void );
2 616 D:\src\myproject\src\command.c <<changestring>>
display();
3 138 D:\src\myproject\src\display.c <<display>>
display(void )
4 385 D:\src\myproject\src\main.c <<main.c>>
display();
5 652 D:\src\myproject\src\main.c <<main.c>>
display();
6 663 D:\src\myproject\src\main.c <<main.c>>
display();
Enter nr or choice (<CR> to abort):
<C-@>s
<C-@><C-@>s
c: 查找该函数被调用的位置
d: 查找该函数调用了哪些函数
e: 查找指定的正规表达式
f: 查找指定的文件
g: 查找指定标识符的定义位置
i: 查找该文件在哪些地方被包含
s: 查找指定标识符的使用位置
t: 查找指定的文本字符串
:cscope find <c|d|e|f|g|i|s|t> <关键字>
:cs f <c|d|e|f|g|i|s|t> <关键字>
:cs f f display.c
:cs f g .*SetConfiguration.*