当前位置: 技术问答>linux和unix
Linux下VIM使用cscope的问题
来源: 互联网 发布时间:2017-01-30
本文导语: 在UBUNTU 10.10下使用vim 7.2(VIM - Vi IMproved 7.2 (2008 Aug 9, compiled Sep 28 2010 07:07:53)),无法使用cscope相应功能,例如:cs find c func 将提示 no cscope connections,应该不是路径设置问题,重新安装 cscope-15.7a.tar版本...
在UBUNTU 10.10下使用vim 7.2(VIM - Vi IMproved 7.2 (2008 Aug 9, compiled Sep 28 2010 07:07:53)),无法使用cscope相应功能,例如:cs find c func 将提示 no cscope connections,应该不是路径设置问题,重新安装
cscope-15.7a.tar版本后仍然无法解决问题,望各路高手指教。。。。。。
.vimrc中的配置信息:
if has("cscope")
set csprg=/usr/bin/cscope (在该路径下找不到cscope文件,但是设置为重新安装后的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
cscope-15.7a.tar版本后仍然无法解决问题,望各路高手指教。。。。。。
.vimrc中的配置信息:
if has("cscope")
set csprg=/usr/bin/cscope (在该路径下找不到cscope文件,但是设置为重新安装后的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
|
不能联网嘛?直接诶sudo apt-get install cscope然后在源代码的上层直接cscope -R就可
|
先在命令行里运行下cscope试试
用whereis cscope看看程序安装在哪里了
用whereis cscope看看程序安装在哪里了