X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/e338dadd0d83da0e77546451d71ad576aea7b187..94e5f650dadfd745f2fccafbba1b79fbb3e4d79f:/ftplugin/python_flake8.vim?ds=inline diff --git a/ftplugin/python_flake8.vim b/ftplugin/python_flake8.vim index bd2c0b9..d1ece61 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 @@ -69,6 +74,5 @@ endif if !exists("no_plugin_maps") && !exists("no_flake8_maps") if !hasmapto('Flake8(') noremap :call Flake8() - noremap! :call Flake8() endif endif