From 8a9a3d5eb1232b84e4301b937b11cbfba6e18cad Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 20 Oct 2012 00:42:23 +0400 Subject: [PATCH] g:flake8_builtins to pass --builtins to flake8.py --- README.mdown | 4 ++++ ftplugin/python_flake8.vim | 8 +++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.mdown b/README.mdown index 86a09cb..7a01cf8 100644 --- a/README.mdown +++ b/README.mdown @@ -34,6 +34,10 @@ the `` key if so. For example, to remap it to `` instead, use: autocmd FileType python map :call Flake8() +To add builtins, in your .vimrc: + + let g:flake8_builtins="_,apply" + To ignore errors, in your .vimrc: let g:flake8_ignore="E501,W293" diff --git a/ftplugin/python_flake8.vim b/ftplugin/python_flake8.vim index 2fc7ed4..710abf7 100644 --- a/ftplugin/python_flake8.vim +++ b/ftplugin/python_flake8.vim @@ -37,6 +37,12 @@ if !exists("*Flake8()") endif " read config + if exists("g:flake8_builtins") + let s:flake8_builtins_opt=" --builtins=".g:flake8_builtins + else + let s:flake8_builtins_opt="" + endif + if exists("g:flake8_ignore") let s:flake8_ignores=" --ignore=".g:flake8_ignore else @@ -57,7 +63,7 @@ if !exists("*Flake8()") " perform the grep itself let &grepformat="%f:%l:%c: %m\,%f:%l: %m" - let &grepprg=s:flake8_cmd.s:flake8_ignores.s:flake8_max_line_length.s:flake8_max_complexity + let &grepprg=s:flake8_cmd.s:flake8_builtins_opt.s:flake8_ignores.s:flake8_max_line_length.s:flake8_max_complexity silent! grep! % " restore grep settings -- 2.39.2