2021-05-12 14:32:11
Python-mode:在 Vim 編輯器中開發 Python 應用的 Vim 外掛
Python-mode 是一個 Vim 外掛,它使你能夠在 Vim 編輯器中更快的利用包括 pylint、rope、pydoc、pyflakes、pep8、autopep8、pep257 和 mccable 在內的各種庫來寫 Python 程式碼,這些庫提供了一些編碼功能,比如靜態分析、特徵重構、摺疊、補全和文件等。
推薦閱讀: 如何用 Bash-Support 外掛將 Vim 編輯器打造成編寫 Bash 指令碼的 IDE
這個外掛包含了所有你在 Vim 編輯器中可以用來開發 Python 應用的特性。
Python-mode 的特性
它包含下面這些值得一提的特性:
- 支援 Python 2.6+ 至 Python 3.2 版本
- 語法高亮
- 提供 virtualenv 支援
- 支援 Python 式折疊
- 提供增強的 Python 縮排
- 能夠在 Vim 中執行 Python 程式碼
- 能夠新增/刪除斷點
- 支援 Python 程式碼的快捷移動和操作
- 能夠在執行的同時檢查程式碼(pylint、pyflakes、pylama ……)
- 支援自動修復 PEP8 錯誤
- 允許在 Python 文件中進行搜尋
- 支援程式碼重構
- 支援強程式碼補全
- 支援定義跳轉
在這篇教學中,我將闡述如何在 Linux 中為 Vim 安裝設定 Python-mode,從而在 Vim 編輯器中開發 Python 應用。
如何在 Linux 系統中為 Vim 安裝 Python-mode
首先安裝 Pathogen (它使得安裝外掛超級簡單,並且執行檔案位於私有目錄中),從而更加容易的安裝 Python-mode
執行下面的命令來獲取 pathogen.vim
檔案和它需要的目錄:
#mkdir-p ~/.vim/autoload ~/.vim/bundle &&
# curl -LSso~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
然後把下面這些內容加入 ~/.vimrc
檔案中:
execute pathogen#infect()
syntax on
filetype plugin indent on
安裝好 pathogen 以後,你可以像下面這樣把 Python-mode 外掛放入 ~/.vim/bunble
目錄中:
#cd~/.vim/bundle
#gitclone https://github.com/klen/python-mode.git
然後像下面這樣在 Vim 中重建 helptags
:
:helptags
你需要啟用 filetype-plugin
(:help filetype-plugin-on
)和 filetype-indent
(:help filetype-indent-on
)來使用 Python-mode 。
在 Debian 和 Ubuntu 中安裝 Python-mode
另一種在 Debian 和 Ubuntu 中安裝 Python-mode 的方法是使用 PPA,就像下面這樣
$ sudo add-apt-repository https://klen.github.io/python-mode/deb main
$ sudoapt-get update
$ sudoapt-get install vim-python-mode
如果你遇到訊息:“The following signatures couldn’t be verified because the public key is not available”,請執行下面的命令:
$ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B5DF65307000E266
現在,使用 vim-addon-manager
啟用 Python-mode:
$ sudo apt install vim-addon-manager
$ vim-addons install python-mode
在 Linux 中客制化 Python-mode
如果想覆蓋預設鍵位系結,可以在 .vimrc
檔案中重定義它們,比如:
" Override go-to.definition key shortcut to Ctrl-]
let g:pymode_rope_goto_definition_bind = "<C-]>"
"Override run current python file key shortcut to Ctrl-Shift-e
let g:pymode_run_bind ="<C-S-e>"
" Override view python doc key shortcut to Ctrl-Shift-d
let g:pymode_doc_bind = "<C-S-d>"
注意,預設情況下, Python-mode 使用 Python 2 進行語法檢查。你可以在 .vimrc
檔案中加入下面這行內容從而啟動 Python 3 語法檢查。
let g:pymode_python ='python3'
你可以在 Python-mode 的 GitHub 倉庫找到更多的設定選項: https://github.com/python-mode/python-mode
這就是全部內容了。在本教學中,我向你們展示了如何在 Linux 中使用 Python-mode 來設定 Vim 。請記得通過下面的反饋表來和我們分享你的想法。
下面關於Python的文章您也可能喜歡,不妨看看:
Linux下Python的安裝以及注意事項 http://www.linuxidc.com/Linux/2015-11/124861.htm
CentOS7環境下原始碼安裝Python3.5 http://www.linuxidc.com/Linux/2017-05/144083.htm
《Python開發技術詳解》.( 周偉,宗傑).[高清PDF掃描版+隨書視訊+程式碼] http://www.linuxidc.com/Linux/2013-11/92693.htm
Python中正規表示式(re模組)的使用 http://www.linuxidc.com/Linux/2017-05/143535.htm
零基礎學Python http://www.linuxidc.com/Linux/2017-05/143489.htm
Python 語言的發展簡史 http://www.linuxidc.com/Linux/2014-09/107206.htm
CentOS 7從Python 2.7升級至Python3.6.1 http://www.linuxidc.com/Linux/2017-04/142916.htm
Python教學PDF合集下載 http://www.linuxidc.com/Linux/2017-04/143278.htm
相關文章