Add python_auto_pipenv config var for all python linters.

This allows a user to set one variable instead of eight.
This commit is contained in:
Eddie Lebow
2018-09-15 21:38:26 -04:00
parent 56e67c5811
commit dbe9352935
10 changed files with 26 additions and 8 deletions

View File

@@ -1,6 +1,8 @@
" Author: w0rp <devw0rp@gmail.com>
" Description: Functions for integrating with Python linters.
call ale#Set('python_auto_pipenv', '0')
let s:sep = has('win32') ? '\' : '/'
" bin is used for Unix virtualenv directories, and Scripts is for Windows.
let s:bin_dir = has('unix') ? 'bin' : 'Scripts'