標籤:
既:Pydiction
Pydiction 允許你在 Vim 中實現 TAB 代碼補全, 可以補全的內容包括:標準的、自訂的,以及第三方模組和包。外加關鍵字、BIFs,和字串。
Pydiction主要由三個部分組成:
- python_pydiction.vim–該檔案為 Vim 的 plugin 檔案,實現 Python 檔案的 TAB 補全功能
- complete-dict–該檔案為 Vim 的 dictionary 檔案,其中包含 Python 關鍵字和模組結構等資訊。是 plugin 進行補全時所尋找的參考檔案
- pydiction.py–該檔案是 Python script 檔案,用於產生 dictionary 檔案。可以通過執行該指令碼添加更多的可 TAB 補全模組
Pydiction的配置
- 把python_pydiction.vim放到ftplugin檔案夾下面,比如我的:
/usr/share/vim/vimfiles/ftplugin/python_pydiction.vim
python pydiction.py django.db.models# 比如將pydiction.py放到settings.py的檔案夾下執行上面的命令,更多的在本文最後
filetype plugin on # 開啟外掛程式let g:pydiction_location = ‘/path/to/your/complete-dict‘let g:pydiction_menu_height = 20# 上一步產生的字典檔案:/data/www/xtyw/xtyw/complete-dict# 那麼上面的path就是它了
Pydiction的使用
tab自動補全,
最後補上常用的django需要匯入的字典:
python pydiction.py django django.conf django.contrib django.core django.db django.dispatch django.forms django.http django.middleware django.shortuts django.template django.templatetags django.utils django.views
最後:Markdown編輯器用起來不錯啊~csdn我又喜歡你了
vim-一種簡單易懂的django代碼補全方式