vim的python代碼偵查工具

來源:互聯網
上載者:User

標籤:vim   外掛程式   python   代碼檢測   pythonic   

這裡介紹三個vim的外掛程式, 一個是pyflakes,另外一個是pep8,還有它們的合體flake8安裝

安裝很簡單,找到你的.vim目錄,把這兩個壓縮包解壓了放進去
去下面vim官方下下來.
pyflakes http://www.vim.org/scripts/script.php?script_id=2441
pep8 http://www.vim.org/scripts/script.php?script_id=2914
flake8 http://www.vim.org/scripts/script.php?script_id=4440
然後放到~/.vim/ftplugin/python
注意放的是使用者的.vim目錄.所以如果你用的是root賬戶,那就需要在/root/.vim放一份. 另外pep8需要安裝pep8 for python

#pip install -U pep8配置

flakes 加到vimrc裡面

if has("gui_running")
highlight SpellBad term=underline gui=undercurl guisp=Orange
endif
let g:pyflakes_use_quickfix = 1 "這是開關

pep8可以設定哪個鍵來檢測,預設F5

"let g:pep8_map=‘whatever key‘

flake8
"Auto-check file for errors on write:
let g:PyFlakeOnWrite = 1
"List of checkers used:
let g:PyFlakeCheckers = ‘pep8,mccabe,pyflakes‘
"Default maximum complexity for mccabe:
let g:PyFlakeDefaultComplexity=10
"List of disabled pep8 warnings and errors:
let g:PyFlakeDisabledMessages = ‘E501‘
"Default height of quickfix window:
let g:PyFlakeCWindow = 6
"Whether to place signs or not:
let g:PyFlakeSigns = 1
"Maximum line length for PyFlakeAuto command
let g:PyFlakeMaxLineLength = 100
"Visual-mode key command for PyFlakeAuto
let g:PyFlakeRangeCommand = ‘Q‘

使用

flakes會直接在代碼編輯頁面提示, 有格式錯誤的會標紅

而pep8則是在vim的輸出視窗提示

而flake8直接可以在儲存的時候提示行和錯誤資訊

對於flake8的快速修複 PyFlakeAuto功能
我們可以綁定它到Fx按鍵上
在vimrc裡面加上下面的map就可以直接按F6來修複pep8的錯誤
map <F6> :PyFlakeAuto<CR>

還有pychecker, pylint等檢測的,就不一一列出了.

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

vim的python代碼偵查工具

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.