ctags
(1) 安装ctags插件
通过 Preference -> Package Control -> Install Package安装ctags插件
(2) ctags.exe
ctags58.zip: http://ctags.sourceforge.net
(3)配置
通过 Preference -> Package Settings -> Ctags -> Settings Default 中的内容拷贝到 Setting User中,将 command": "" 中的 "" 填入ctags.exe的路径位置。
"command": "",---->
"command": "C:\\...\\cscope_ctags\\ctags.exe",
(4) 工程根目录上, 点击右键,选择Ctags:Rebuild tags
cscope
(1) 安装cscope插件
通过 Preference -> Package Control -> Install Package安装cscope插件
(2)cscope.exe
cscope-15.9.tar.gz: http://cscope.sourceforge.net
cscope_windows.7z: http://files.cnblogs.com/leajon-first/cscope_windows.7z (windows下Cscope【转】 - Leo Forest - 博客园 (cnblogs.com))
(3)配置
通过 Preference -> Package Settings -> CscopeSublime -> Settings Default 中的内容拷贝到 Setting User中,将 executable": "" 中的 "" 填入cscope.exe的路径位置,将 "database_location": "" 中的 ""不需要填入cscope.out的路径位置,注释掉,会在工程的目录下自动生成。
"executable": "cscope",---->
"executable": "C:\\...\\cscope_ctags\\cscope.exe",
//"database_build_command": [ "cscope-indexer", "-r" ],--->
//"database_build_command": [ "C:\\...\\cscope_ctags\\cscope-indexer", "-r" ],
"database_location": "cscope.out",--->
//"database_location": "C:\\....\\cscope.out",
//"database_location": "cscope.out",
(4)cscope.out也可由外部命令生成。
参考:
https://www.zybuluo.com/lanxinyuchs/note/33551