Vim + Cscope打造Linux下的Source Insight

來源:互聯網
上載者:User

  Source Insight是Windows下最方便瀏覽代碼的工具。但是Source Insight是沒有Linux版本的。為了方便在Linux下瀏覽代碼並進行學習,可以利用Vim配合Cscope來打造Linux下的Source Insight。

  Cscope是Vim適用的工具和外掛程式,通過Cscope可以方便地獲知某個函數的定義以及被哪些函數調用。

 

Cscope安裝

  可以在http://cscope.sourceforge.net/下載源碼包,然後解壓,編譯安裝。

./configure

make

make install

 

產生Cscope資料庫

  使用cscope前,必須為代碼產生一個cscope資料庫。假設當前代碼在/usr/src/linux目錄下,則運行下列命令。

cd /usr/src/linux

cscope –Rbq

  然後會產生3個檔案:cscope.in.out,cscope.out,cscope.po.out。

  用vim開啟代碼檔案,將剛才產生的cscope檔案匯入到vim中。

vim init/main.c

:cs add /usr/src/linux/cscope.out /usr/src/linux

  也可以將下面語句添加到vim的設定檔.vimrc中。

if fileradable("cscope.out")    cs add csope.outelseif $CSCOPE_DB  != ""    cs add $CSCOPE_DBendif

 

Cscope的功能

  Cscope的功能通過它的子命令“find”來實現。

cs find c|d|e|g|f|i|s|t name

  • s:尋找C代碼符號
  • g:尋找本定義
  • d:尋找本函數調用的函數
  • c:尋找調用本函數的函數
  • t:尋找本字串
  • e:尋找本egrep模式
  • f:尋找本檔案
  • i:尋找包含本檔案的檔案

  可以在.vimrc中添加下面的快速鍵,免得每次都要輸入一長串命令。

nmap <C-@>s :cs find s <C-R>=expand("<cword>")<CR><CR>nmap <C-@>g :cs find g <C-R>=expand("<cword>")<CR><CR>nmap <C-@>c :cs find c <C-R>=expand("<cword>")<CR><CR>nmap <C-@>t :cs find t <C-R>=expand("<cword>")<CR><CR>nmap <C-@>e :cs find e <C-R>=expand("<cword>")<CR><CR>nmap <C-@>f :cs find f <C-R>=expand("<cword>")<CR><CR>nmap <C-@>i :cs find i ^<C-R>=expand("<cword>")<CR>$<CR>nmap <C-@>d :cs find d <C-R>=expand("<cword>")<CR><CR>

  使用時,將游標停留在要尋找的對象上,按下<C-@>g,即先按“Ctrl+@”,然後很快再按“g”,將會尋找該對象的定義。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.