vim個人配置總結

來源:互聯網
上載者:User

標籤:vim

ctags

1.下載:http://sourceforge.net/projects/ctags/files/ctags/5.8/ctags-5.8.tar.gz/download

2.編譯:./configure -prefix /usr/local/ctags 其中-prefix指定安裝目錄

      make、make install     

3.使用:ctags -R . 編譯建立所有檔案的tags(在目前的目錄會產生一個tags檔案)


taglist

1.下載:http://www.vim.org/scripts/script.php?script_id=273

2.安裝:拷貝doc、plugin到 ~/.vim/的對應目錄中(如果沒有,則建立doc、plugin目錄),然後在~/.vim/doc目錄下,啟動vim ,執行:helptags.

3.使用:vim -t tagName,開啟tagName所在的檔案   

4.常用命令:

:tag tagName,跳轉到taglist視窗中對應的tagName

      :tselect tagName,全域搜尋tagName

       :Tlist,開啟taglist視窗

ctrl+],跳轉到游標所在函數的定義處

ctrl+t,跳轉到上次游標所在位置


NERDTree

1.下載: http://www.vim.org/scripts/script.php?script_id=1658

2.安裝:拷貝doc、plugin到 ~/.vim/的對應目錄中(如果沒有,則建立doc、plugin目錄),然後在~/.vim/doc目錄下,啟動vim ,執行:helptags.


vim使用:

ctrl+w+h,向左邊切換視窗

ctrl+w+l,向右邊切換視窗

      

vimrc配置

1.拷貝一個vimrc 到 ~/.vimrc,從而不影響系統的預設配置

2.在檔案尾添加自己的配置項

 " 基本配置

 if has("syntax") " 文法高亮

         syntaxon

 endif

 set number" 顯示行號

 colorscheme ron " 色彩配置 elflord ron peachpuff default

 set showmatch" 匹配括弧

 set title

 

 " taglist配置

 let Tlist_Show_One_File=1

 let Tlist_Exit_OnlyWindow=1

 

 " ctags配置

 let Tlist_Ctags_Cmd=‘/usr/local/ctags/bin/ctags‘  " 編譯安裝後的ctags位置

 

 " NERDTree配置

 map <F3> :NERDTreeMirror<CR> " F3開啟NERDTree

 map <F3> :NERDTreeToggle<CR>


參考:

http://lnmcc.net/2013/04/01/mac%E4%B8%8Bvim-taglist-ctags/

http://blog.chinaunix.net/uid-23089249-id-2855999.html

http://easwy.com/blog/archives/advanced-vim-skills-taglist-plugin/


vim個人配置總結

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.