Ctags
创建日期:2015-01-20 11:24

windows注意事项

"command" : "C:\\Users\\<username>\\Downloads\\CTags\\ctag.exe"

windows中路径中要用双反斜线。

OS X

The default ctags executable in OSX does not support recursive directory search (i.e. ctags -R). To get a proper copy of ctags, use one of the following options:

Using Homebrew:

brew install ctags

修改 Preferences.sublime-settings文件:

"file_exclude_patterns": ["*.tags", "*.tags_sorted_by_file", "*.gemtags"]

修改CTags.sublime-settings文件:

{
    "command" : "/usr/local/bin/ctags"
}

参考资料

SublimeText/CTags GitHub

ctags 下载地址