diff options
author | w0rp <w0rp@users.noreply.github.com> | 2017-10-11 22:18:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-11 22:18:22 +0100 |
commit | be547a0111c67473f69dec93d59cb071322b05c5 (patch) | |
tree | 4fc3026362f6b1f488d1dc8befb79caf817cb1e4 /autoload | |
parent | 70177480ba1f9968409709442fc4be4e9a69d564 (diff) | |
parent | 620ec32da15acaa0a395abb03dbcb47504a645fb (diff) | |
download | ale-be547a0111c67473f69dec93d59cb071322b05c5.zip |
Merge pull request #990 from monokrome/master
Use $VIRTUAL_ENV environment variable when present.
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/python.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/python.vim b/autoload/ale/python.vim index 4f14697c..d788b779 100644 --- a/autoload/ale/python.vim +++ b/autoload/ale/python.vim @@ -71,7 +71,7 @@ function! ale#python#FindVirtualenv(buffer) abort endfor endfor - return '' + return $VIRTUAL_ENV endfunction " Run an executable check for Python scripts. |