summaryrefslogtreecommitdiff
path: root/doc/ale-python.txt
diff options
context:
space:
mode:
authoryut23 <yut23@gvljohnsons.com>2019-01-20 23:52:44 -0500
committeryut23 <yut23@gvljohnsons.com>2019-01-20 23:59:46 -0500
commitf2db164268378e6e7ddfa3adfb70ebb6eb47a5a5 (patch)
tree04f64dd599de040d021a01951fa11c37c243fbc6 /doc/ale-python.txt
parentd1fc084b2d3af6dd9807a01a6ca7822af6c2a78f (diff)
downloadale-f2db164268378e6e7ddfa3adfb70ebb6eb47a5a5.zip
Add support for pyls configuration options
Resolves #1443. Heavily inspired by the analogous support added for elixir-ls.
Diffstat (limited to 'doc/ale-python.txt')
-rw-r--r--doc/ale-python.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/ale-python.txt b/doc/ale-python.txt
index a1ad1500..3d355bc6 100644
--- a/doc/ale-python.txt
+++ b/doc/ale-python.txt
@@ -494,6 +494,24 @@ g:ale_python_pyls_auto_pipenv *g:ale_python_pyls_auto_pipenv*
if true. This is overridden by a manually-set executable.
+g:ale_python_pyls_config *g:ale_python_pyls_config*
+ *b:ale_python_pyls_config*
+ Type: |Dictionary|
+ Default: `{}`
+
+ Dictionary with configuration settings for pyls. For example, to disable
+ the pycodestyle linter: >
+ {
+ \ 'pyls': {
+ \ 'plugins': {
+ \ 'pycodestyle': {
+ \ 'enabled': v:false
+ \ }
+ \ }
+ \ },
+ \ }
+<
+
===============================================================================
pyre *ale-python-pyre*