如何在vim中使用tab進行python程式碼補全

pythontab發表於2013-10-24

Pydiction 允許你在 Vim 中實現 TAB 程式碼補全, 可以補全的內容包括:標準的、自定義的,以及第三方模組和包。外加關鍵字、BIFs,和字串。  

Pydiction 由 3 個主要檔案構成:      

python_pydiction.vim -- 該檔案為 Vim 的 plugin 檔案,實現 Python 檔案的 TAB 補全功能。

complete-dict -- 該檔案為 Vim 的 dictionary 檔案,其中包含 Python 關鍵字和模組結構等資訊。是 plugin 進行補全時所查詢的參考檔案。

pydiction.py -- (可選)該檔案是 Python script 檔案,用於生成 dictionary 檔案。可以透過執行該指令碼新增更多的可 TAB 補全模組。


用法  

=====  

     在 Vim 中輸入部分 Python 關鍵字、模組名、屬性或方法名,然後按 Tab 鍵以彈出補全資訊。

例如, 輸入

       os.p<Tab>  

會彈出

       os.pardir  

       os.path  

       os.pathconf(  

       os.pathconf_names  

       os.pathsep  

       os.pipe(  

       ...  


如果你發現在 TAB 完成選單中得到的結果並不是你想要的,可能的一種原因是你沒有設定 Vim 忽略大小寫。可以透過 ":set noic" 方式進行設定。

【如何安裝】

在 UNIX/LINUX 下,將 python_pydiction.vim 放入 ~/.vim/after/ftplugin/ ,若該目錄不存在則手動建立,Vim 會自動去該目錄下查詢相關檔案。不要把除 python_pydiction.vim 之外的其他檔案放入該目錄。

在你的 vimrc 檔案中增加下面的欄位來啟用 ftplugins :    

filetype plugin on  

之後確保設定 "g:pydiction_location" 指向你放置的 complete-dict 檔案所在的全路徑,例如        

let g:pydiction_location = 'C:/vim/vimfiles/ftplugin/pydiction/complete-dict'  

設定可以參考

# unzip pydiction-1.2.zip

# cp python_pydiction.vim /usr/share/vim/vim70/ftplugin

# mkdir /usr/share/vim/vim70/pydiction

# cp complete-dict pydiction.py /usr/share/vim/vim70/pydiction/

# vi ~/.vimrc

...

# 增加

let g:pydiction_location = '/usr/share/vim/vim70/pydiction/complete-dict'

let g:pydiction_menu_height = 20

開啟 python 指令碼檔案,在編寫 python 程式時,按 TAB 鍵即可啟用自動補全選單。


相關文章