【原創】如何在vim中使用tab進行python代碼補全


Pydiction : Tab-complete your Python code 

      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 後
相關文章
相關標籤/搜索