我是ctags的大粉丝因此,我想知道如果我有cscope,我会在两个程序中受益更多.看起来像后者具有与ctags相同的特征,即便于找到符号.
VIM提供的功能是什么?
谢谢
解决方法
cscope
可以提高你的生产力.
ctags
只允许您导航到符号声明(单向查找).
cscope允许您:
>转到符号的声明
>显示对符号的所有引用的可选列表
>搜索任何全局定义
>函数调用的函数
>调用函数的函数
>搜索文本字符串
>搜索正则表达式模式
>查找文件
>查找包含文件的所有文件
教程:
> Vim/Cscope tutorial
> Using Vim and cscope within cygwin
相关问题:
> cscope or ctags why choose one over the other?
> What is a good tool to aid in browsing/following C code?
> Vim+ctags tips and tricks