X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/e338dadd0d83da0e77546451d71ad576aea7b187..cac78c40c561325dbd3172552b958abd8c5bf6a0:/ftplugin/python_flake8.vim 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