summaryrefslogtreecommitdiff
path: root/doc/ale-python.txt
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-04-15 13:35:54 +0100
committerw0rp <devw0rp@gmail.com>2017-04-15 13:36:16 +0100
commit706dd050f2ec570eb12398d42a18f6c4f2bd56df (patch)
tree2c463aa0d5ef02feab3f2ef87215bd4417b47729 /doc/ale-python.txt
parent2f009690c3cf442f828830cc1d2fece619f308ff (diff)
downloadale-706dd050f2ec570eb12398d42a18f6c4f2bd56df.zip
Fix #257 in preparation for #427, standardise options with fallbacks, and make it so every value can be computed dynamically
Diffstat (limited to 'doc/ale-python.txt')
-rw-r--r--doc/ale-python.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ale-python.txt b/doc/ale-python.txt
index 77e9e1b1..698f3912 100644
--- a/doc/ale-python.txt
+++ b/doc/ale-python.txt
@@ -13,7 +13,7 @@ g:ale_python_flake8_executable *g:ale_python_flake8_executable*
This variable can be changed to modify the executable used for flake8.
-g:ale_python_flake8_args *g:ale_python_flake8_args*
+g:ale_python_flake8_options *g:ale_python_flake8_options*
Type: |String|
Default: `''`
@@ -25,7 +25,7 @@ g:ale_python_flake8_args *g:ale_python_flake8_args*
Python 3, you may want to set >
let g:ale_python_flake8_executable = 'python3' " or 'python' for Python 2
- let g:ale_python_flake8_args = '-m flake8'
+ let g:ale_python_flake8_options = '-m flake8'
<
after making sure it's installed for the appropriate Python versions (e.g.
`python3 -m pip install --user flake8`).