借鑒文章:
1、http://www.cnblogs.com/samwei/archive/2011/04/25/2026211.html
1.文法高亮
為了能在Vim中支援Python文法需要用到外掛程式python.vim,該外掛程式預設位於<Vim安裝目錄>/<$VIMRUNTIME>/syntax/下,如果你在該路徑下沒有找到這個外掛程式,需要到python.vim : Enhanced version of the python syntax
highlighting script下載。然後為了能讓Vim識別Python文法需要在vimrc中添加:
set filetype=pythonau BufNewFile,BufRead *.py,*.pyw setf python
2.縮排
在vimrc中添加如下縮排相關的代碼:
set autoindent " same level indentset smartindent " next level indentset expandtabset tabstop=4set shiftwidth=4set softtabstop=4
3.項目視圖
像Visual Studio或Eclipse之類的IDE都會提供項目視圖(位於左側或右側),程式員利用該視圖在檔案間或類間跳轉。利用Ctags和外掛程式Tasklist可以在vim中實現此功能。
- 首先下載Exuberant Ctags
- 然後解壓Ctags,並進入解壓後的目錄,利用如下命令編譯安裝Ctags:
./configure && sudo make install
- 通過這種方式,Ctags被安裝在/usr/local/bin下。接下來在vimrc中添加如下命令告訴Vim Ctags的安裝路徑:
let Tlist_Ctags_Cmd='/usr/local/bin/ctags'
- 接著安裝Tasklist外掛程式:下載TaskList.vim,然後把它放入plugin目錄下
- 最後使用命令:TlistToggle開啟taglist視窗,展示了該視窗。
4.MiniBufExplorer
在Visual Studio或Eclipse中你開啟的緩衝會以tab的形式列在視窗的頂端或底部,在Vim中外掛程式MiniBufExplorer來實現此功能。下載minibufexpl.vim並將其放在plugin目錄下。接著在vimrc中添加如下命令:
let g:miniBufExplMapWindowNavVim = 1let g:miniBufExplMapWindowNavArrows = 1let g:miniBufExplMapCTabSwitchBufs = 1let g:miniBufExplModSelTarget = 1
展示了MiniBufExplorer的使用效果:
5.Omnicompletion
Vim7中添加了對文法提示和自動完成的支援,對於python來說需下載pythoncomplete.vim並將其放在<Vim安裝目錄>/<$VIMRUNTIME>/autoload/目錄下,接著在vimrc中添加如下命令:
filetype plugin onset ofu=syntaxcomplete#Completeautocmd FileType python setomnifunc=pythoncomplete#Completeautocmd FileType python runtime! autoload/pythoncomplete.vim
最後在編寫代碼時通過ctrl-x ctrl-o來開啟文法提示操作功能表,如所示: