diff options
author | w0rp <devw0rp@gmail.com> | 2023-09-05 21:44:52 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2023-09-05 21:45:34 +0100 |
commit | 8ba7ae818c33c3b9ed9627ae9661f0420d256d7c (patch) | |
tree | d6b7d016fe56906a8f7fdb57d6860fded6bc652f /doc/ale-rust.txt | |
parent | 64ddf457e1e95aed1501b6db37181c0e3bfee5e7 (diff) | |
download | ale-8ba7ae818c33c3b9ed9627ae9661f0420d256d7c.zip |
Close #4461 - Use rust-analyzer by default
Use rust-analyzer by default instead of rls, as rls has been deprecated.
Diffstat (limited to 'doc/ale-rust.txt')
-rw-r--r-- | doc/ale-rust.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/ale-rust.txt b/doc/ale-rust.txt index 48f558e8..897fcaa1 100644 --- a/doc/ale-rust.txt +++ b/doc/ale-rust.txt @@ -33,11 +33,12 @@ Integration Information 5. rustfmt -- If you have `rustfmt` installed, you can use it as a fixer to consistently reformat your Rust code. - Only cargo and rls are enabled by default. To switch to using rustc instead - of cargo, configure |g:ale_linters| appropriately: > + Only cargo and rust-analyze are enabled by default. To switch to using rustc + instead of cargo, configure |b:ale_linters| in your ftplugin file + appropriately: > " See the help text for the option for more information. - let g:ale_linters = {'rust': ['rustc', 'rls']} + let b:ale_linters = ['analyzer', 'rustc'] < Also note that rustc 1.18. or later is needed. |