GVIM + CSCOPE + CTAGS 超过 Windows

GVIM + CSCOPE + CTAGS over Windows

我已经将我的 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

[已解决] 最后我解决了安装本机 windows cscope.exe 可执行文件的问题。到目前为止,我使用的是 cygwin built-in cscope 应用程序。