---------------------------------------------------------------------------
Ctags 学习笔记
基本使用方法:在 vim 中,ctrl+] 跳到对应 tag,ctrl+t 返回原处
1. 对单个文件生成 tags
进入该文件所在的目录
# ctags -L -
sourcefile
[ctrl+d]
# gvim sourcefile
2. 对整个目录生成 tags
进入该目录
# ctags -R
#
---------------------------------------------------------------------------