From: Vincent Driessen Date: Sat, 18 Feb 2012 08:00:44 +0000 (-0800) Subject: Merge pull request #2 from yifanzhang/master X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/2cf450fb46d67e32d13ad0ff92397c11e8c640cd?hp=80338e1657cb1369479d7da0b4fe09200ffeb34d Merge pull request #2 from yifanzhang/master added supports for ignores --- diff --git a/README.mdown b/README.mdown index 064594b..56bfe43 100644 --- a/README.mdown +++ b/README.mdown @@ -41,6 +41,9 @@ enable this, add the following line to your `.vimrc` file (thanks autocmd BufWritePost *.py call Flake8() +To ignore errors, in your .vimrc: + + g:flake8_ignore=E501,W293 This plugin goes well together with the following plugin: diff --git a/ftplugin/python_flake8.vim b/ftplugin/python_flake8.vim index bd2c0b9..bfc97c7 100644 --- a/ftplugin/python_flake8.vim +++ b/ftplugin/python_flake8.vim @@ -13,6 +13,11 @@ let b:loaded_flake8_ftplugin=1 let s:flake8_cmd="flake8" +let s:flake8_ignores="" +if exists("g:flake8_ignore") + let s:flake8_ignores=" --ignore=".g:flake8_ignore +endif + if !exists("*Flake8()") function Flake8() if !executable(s:flake8_cmd) @@ -34,7 +39,7 @@ if !exists("*Flake8()") " perform the grep itself let &grepformat="%f:%l:%c: %m\,%f:%l: %m" - let &grepprg=s:flake8_cmd + let &grepprg=s:flake8_cmd.s:flake8_ignores silent! grep! % " restore grep settings