Windows上的GVIM + CSCOPE + CTAGS

时间:2018-05-29 12:20:06

标签: windows vim mingw ctags cscope

我已经将我的Windows机器设置为使用gvim + cscope + ctags,就像我以前使用旧的Linux环境一样。

Cscope正在工作,但只是部分工作,有些命令不起作用:

:cs find e foo /find a pattern/
:cs find t foo /find a text/
:cs find i foo /find files including this file/

其他的似乎工作正常。 这是我在minGW上运行的生成标记脚本:

rm -f tags 
rm -f cscope.*
find . -type f -name *.c  ! -path "./bin/*" -o -name *.h   ! -  path "./bin/*"  -o -name SCons*   ! -path "./bin/*" >cscope.files
cscope -icscope.files -b -q -k
/c/Users/M0081495/Downloads/ctags58/ctags58/ctags.exe -R -L cscope.files

1 个答案:

答案 0 :(得分:0)

[已解决]最后,我解决了安装本机Windows cscope.exe可执行文件的问题。到目前为止,我正在使用cygwin内置的cscope应用程序。