From: Yifan Zhang Date: Sat, 18 Feb 2012 00:01:10 +0000 (+0000) Subject: added support for ignores X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/cac78c40c561325dbd3172552b958abd8c5bf6a0?ds=sidebyside added support 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