diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-html.txt | 2 | ||||
-rw-r--r-- | doc/ale-python.txt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/ale-html.txt b/doc/ale-html.txt index 06ee2df1..3d428b3b 100644 --- a/doc/ale-html.txt +++ b/doc/ale-html.txt @@ -47,7 +47,7 @@ g:ale_html_tidy_executable *g:ale_html_tidy_executable* This variable can be changed to change the path to tidy. -g:ale_html_tidy_args *g:ale_html_tidy_args* +g:ale_html_tidy_options *g:ale_html_tidy_options* Type: |String| Default: `'-q -e -language en'` 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`). |