#729 - Support running Python programs from virtualenv for Windows

This commit is contained in:
w0rp
2017-07-05 13:07:55 +01:00
parent 1b8450e7a0
commit a04e73ddbc
7 changed files with 11 additions and 29 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ function! ale#fixers#autopep8#Fix(buffer) abort
let l:executable = ale#python#FindExecutable(
\ a:buffer,
\ 'python_autopep8',
\ ['/bin/autopep8'],
\ ['autopep8'],
\)
if !executable(l:executable)
+1 -1
View File
@@ -8,7 +8,7 @@ function! ale#fixers#isort#Fix(buffer) abort
let l:executable = ale#python#FindExecutable(
\ a:buffer,
\ 'python_isort',
\ ['/bin/isort'],
\ ['isort'],
\)
if !executable(l:executable)
+1 -1
View File
@@ -8,7 +8,7 @@ function! ale#fixers#yapf#Fix(buffer) abort
let l:executable = ale#python#FindExecutable(
\ a:buffer,
\ 'python_yapf',
\ ['/bin/yapf'],
\ ['yapf'],
\)
if !executable(l:executable)