diff options
author | Nathan Henrie <n8henrie@users.noreply.github.com> | 2019-03-05 02:09:29 -0700 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2019-03-05 09:09:29 +0000 |
commit | e5746d9a83a351144b4defb91f65cae7917766b5 (patch) | |
tree | d40073ebc91f059fc74beee36ed39ae1e2abeedb /doc | |
parent | c4328f2a31a8acac96ca8d7615231812bad700bf (diff) | |
download | ale-e5746d9a83a351144b4defb91f65cae7917766b5.zip |
Add lsp_config support for rls (#2332)
* Add lsp_config for rls
* Add working config example and test
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-rust.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/ale-rust.txt b/doc/ale-rust.txt index 7510dfbd..3393b9c0 100644 --- a/doc/ale-rust.txt +++ b/doc/ale-rust.txt @@ -172,6 +172,20 @@ g:ale_rust_rls_toolchain *g:ale_rust_rls_toolchain* The `rls` server will only be started once per executable. +g:ale_rust_rls_config *g:ale_rust_rls_config* + *b:ale_rust_rls_config* + Type: |Dictionary| + Default: `{}` + + Dictionary with configuration settings for rls. For example, to force + using clippy as linter: > + { + \ 'rust': { + \ 'clippy_preference': 'on' + \ } + \ } + + =============================================================================== rustc *ale-rust-rustc* |