码迷,mamicode.com
首页 > 其他好文 > 详细

sublime text ctags插件使用

时间:2014-09-11 15:12:02      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:使用   文件   div   sp   c   linux   window   r   bs   

1.将其他项目的tag加入我们项目的.tag文件中,实现函数跳转:
ctags -R -f "your-tag-file-path" -a "other-project-path" --languages=C
但是这个方法比较笨,因为你一旦rebuild tags,就会覆盖掉原先的.tag文件,你又得重新把其他项目的tag加一次。
 
2.比上一个方法更好用的是,可以在ctags的settings-user里面添加这么一行:
"extra_tag_files": [".gemtags", "tags", "other_tag_file_path"]
other_tag_file_path表示其他tag文件的路径,比如我已经把Linux的/usr/include头文件目录拷贝到Windows系统的D:\\usr_include\\include目录中,然后我用ctags对该目录生成了tag文件,它的路径是D:\\usr_include\\.tag,只要把这个路径替换上面那句话的other_tag_file_path,则ctags会搜索这个文件,实现函数跳转。

sublime text ctags插件使用

标签:使用   文件   div   sp   c   linux   window   r   bs   

原文地址:http://www.cnblogs.com/cklxmu/p/3966481.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!