2021-05-12 14:32:11
如何在Vim中使用tab進行Python程式碼補全
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 鍵即可啟用自動補全選單。
展示:
按 Tab 前
按 Tab 後
--------------------------------------分割線 --------------------------------------
把VIM打造成一個簡單實用的IDE http://www.linuxidc.com/Linux/2011-06/37032.htm
Vim學習指南 http://www.linuxidc.com/Linux/2013-08/89096.htm
快速學會 Vi編輯器 http://www.linuxidc.com/Linux/2013-08/88586.htm
強大的Vim 編輯器 http://www.linuxidc.com/Linux/2013-07/87544.htm
在CentOS 6.2上搭建Vim開發環境 http://www.linuxidc.com/Linux/2013-07/87363.htm
CentOS 5.4 安裝高亮Vim編輯工具 http://www.linuxidc.com/Linux/2013-06/86508.htm
Vim技巧分享:C語言設定 http://www.linuxidc.com/Linux/2012-12/77124.htm
Ubuntu中設定Vim的行號 http://www.linuxidc.com/Linux/2012-12/75485.htm
Vim編輯器使用基礎教學 http://www.linuxidc.com/Linux/2013-05/84031.htm
--------------------------------------分割線 --------------------------------------
本文永久更新連結地址:http://www.linuxidc.com/Linux/2015-03/115521.htm
相關文章