Linux Vim 配置ctags

安裝 Ctags

下載地址: http://prdownloads.sourceforge.net/ctags/ctags-5.8.tar.gzvim

tar zxvf ctags-5.8.tar.gz
cd ctags-5.8.tar.gz
./configure
make 
sudo make install

安裝完成後,可執行 ctags --version 查看ctags函數

[mario@localhost ~]$ ctags --version
Exuberant Ctags 5.8, Copyright (C) 1996-2009 Darren Hiebert
Compiled: Jan 23 2015, 18:22:41
Addresses: <dhiebert@users.sourceforge.net>, http://ctags.sourceforge.net
Optional compiled features: +wildcards, +regex

Catgs 應用

進入項目中,如項目在/home/server/path/Test.net

ctags -R

會在當前目錄下生成一個tags文件 或者 進入你想放置tags文件的位置,而後執行code

ctags -R /home/server/path/Test

這樣,這個項目的tags就會在當前目錄下生成tagsserver

而後在~/.vimrc 中添加 :
set tags+=/home/server/path/Test/tags
或者 在vim中運行命令:
:set tags+=/home/server/path/Test/tags 便可。get

而後能夠使用ctrl + ] 就能夠自動跳至函數定義處,而Ctrl + t 能夠返回上次查看位置。這樣就可心快帶在代碼裏定位了。io

相關文章
相關標籤/搜索