1、cscope工具
安裝
#sudo apt-get install cscope
2、vim設定
使用者主目錄下的.vimrc配置如下:
"#################
"general setting
"#################
set clipboard+=unnamed "共用windows黏貼板
"set mouse=a "使用滑鼠滾輪滑動
"#################
"search and match
"#################
set showmatch
set hlsearch
set incsearch
" show full tags when doing search completion
set showfulltag
"### cscope begin ###
if $cscope_db != ""
cs add $cscope_db
endif
"hit 'ctrl-/'
nmap s :cs find s =expand("")
nmap g :cs find g =expand("")
nmap c :cs find c =expand("")
nmap t :cs find t =expand("")
nmap e :cs find e =expand("")
nmap f :cs find f =expand("")
nmap i :cs find i ^=expand("")$
nmap d :cs find d =expand("")
"hit 'ctrl-j'
nmap s :cs find s =expand("")
nmap g :cs find g =expand("")
nmap c :cs find c =expand("")
nmap t :cs find t =expand("")
nmap e :cs find e =expand("")
nmap f :cs find f =expand("")
nmap i :cs find i ^=expand("")$
nmap d :cs find d =expand("")
"### cscope end ####
"### misc ###
"remove the windows ^m
noremap m :%s/r//g
vim中cscope工具安裝與使用
cscope是類似於ctags一樣的工具,但可以認為她是ctags的增強版,因為她比ctags能夠做更多的事。在vim中,通過cscope的查詢,跳轉到指定的地方就像跳轉到任何標籤 她能夠儲存標籤棧,所以通過合適的鍵盤對映繫結,你能夠在函式向後或向前跳轉,就像通常使用的tags一樣。cs f s 查...
Cscope 安裝和使用
2.解壓 3.安裝 configure prefix home make make install 1.建立cscope使用的索引檔案 1.在你需要瀏覽原始碼的根目錄下 如你想用cscope看linux原始碼 使用下面命令 cscope rbkq r 表示把所有子目錄裡的檔案也建立索引 b 表示cs...
cscope 安裝使用 指南
首先 安裝cscope 然後敲入下面的命令 mkdir vim mkdir vim plugin 使用前,在 的目錄下敲入 find name h o name c o name cc o name s cscope.files cscope bkq i cscope.files 然後用vim看 就...