#563 Use a configurable list of directories for detecting virtualenv paths instead.

This commit is contained in:
w0rp
2017-05-20 13:34:53 +01:00
parent d012fd1f09
commit 65fbf1cdff
2 changed files with 30 additions and 4 deletions

View File

@@ -2,6 +2,21 @@
ALE Python Integration *ale-python-options*
-------------------------------------------------------------------------------
Global Options
g:ale_virtualenv_dir_names *g:ale_virtualenv_dir_names*
*b:ale_virtualenv_dir_names*
Type: |List|
Default: `['.env', 'env', 've', 've-py3', 'virtualenv']`
A list of directory names to be used when searching upwards from Python
files to discover virtulenv directories with. For directory named `'foo'`,
ALE will search for `'foo/bin/activate'` in all directories on and above
the directory containing the Python file to find virtualenv paths.
-------------------------------------------------------------------------------
flake8 *ale-python-flake8*