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
會彈出
os. os.pathconf(
os.pathconf_names
os.pathsep
..
如果你發現在TAB 完成選單中得到的結果並不是你想要的,可能的一種原因是你沒有設定Vim 忽略大小寫。 【如何安裝】
在UNIX/LINUX 下,將python_pydiction.vim 放入~/.vim/after/ftplugin/ ,若目錄不存在則手動建立,Vim 會自動去該目錄下尋找相關檔案。不要把python_pydiction.vim 以外的其他文件放入該目錄。的complete-dict 檔案所在的全路徑,例如
let g:pydiction_location = 'C:/vim/vimfiles/ftplugin/pydiction/complete-dict'
# cp python_pydiction.vim /usr/share/vim/vim70/ftplugin# mkdir /usr/share/vim/vim70/pydiction# cp completedic-dicp/ # vi ~/.vimrc...# 增加let g:pydiction_location = '/usr/share/vim/vim70/pydiction/complete-dict'ight開啟python 腳本文件,在編寫python 程式時,按TAB 鍵即可啟動自動補全選單。