歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> 關於Linux

ctags-不使用ide,查看方法的定義

ctags-不使用ide,查看方法的定義   ctags配合vim可以查看方法的定義,如同ide的按住ctrl+單擊查看方法    安裝 sudo apt-get install ctags   vim本身大小寫敏感,需要設值vim .vimrc,並鍵入set ignorecase    使用 ctags main.c在當前目錄生成tags文件,或者用通配符 ctags *.c   vim tags可以查看程序結構   ctags –R * ($ 為Linux系統Shell提示符)   ctags -R --exclude=*.js遞歸整個目錄的源文件,但是排除js文件    ctags -R --exclude=*.js ~/ 後面的目錄相當於classpath     vi –t tag (請把tag替換為您欲查找的變量或函數名)  :ts (ts 助記字:tags list, “:”開頭的命令為VI中命令行模式命令)  :tp (tp 助記字:tags preview)—此命令不常用,可以不用記  :tn (tn 助記字:tags next) —此命令不常用,可以不用記    可以查看自己移動的路徑,vim命令模式下使用tags Ctrl + ] 將光標移到需要查看的方法(可以使用vim命令模式 /所需查找的字符),然後鍵入此命令查看 Ctrl + T 查看後返回上次操作的原始位置
 
Copyright © Linux教程網 All Rights Reserved