summaryrefslogtreecommitdiff
path: root/ale_linters/python/flake8.vim
diff options
context:
space:
mode:
authorEddie Lebow <elebow@users.noreply.github.com>2018-09-15 21:38:26 -0400
committerEddie Lebow <elebow@users.noreply.github.com>2018-09-15 22:10:46 -0400
commitdbe93529352880068cb738abb93a1bc009bf73ed (patch)
tree2b2d1ebe0a08cc2b86af3b12a0575b031645c306 /ale_linters/python/flake8.vim
parent56e67c5811024ef25e1d8792193c725241bdc04b (diff)
downloadale-dbe93529352880068cb738abb93a1bc009bf73ed.zip
Add `python_auto_pipenv` config var for all python linters.
This allows a user to set one variable instead of eight.
Diffstat (limited to 'ale_linters/python/flake8.vim')
-rw-r--r--ale_linters/python/flake8.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/ale_linters/python/flake8.vim b/ale_linters/python/flake8.vim
index 5986f708..9dcdacc6 100644
--- a/ale_linters/python/flake8.vim
+++ b/ale_linters/python/flake8.vim
@@ -12,7 +12,8 @@ function! s:UsingModule(buffer) abort
endfunction
function! ale_linters#python#flake8#GetExecutable(buffer) abort
- if ale#Var(a:buffer, 'python_flake8_auto_pipenv') && ale#python#PipenvPresent(a:buffer)
+ if (ale#Var(a:buffer, 'python_auto_pipenv') || ale#Var(a:buffer, 'python_flake8_auto_pipenv'))
+ \ && ale#python#PipenvPresent(a:buffer)
return 'pipenv'
endif