diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/user/manual.adoc | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/user/manual.adoc b/docs/user/manual.adoc index 5185218abd9..eb21bd15a01 100644 --- a/docs/user/manual.adoc +++ b/docs/user/manual.adoc @@ -315,7 +315,9 @@ nvim_lsp.rust_analyzer.setup({ prefix = "self", }, cargo = { - loadOutDirsFromCheck = true + buildScripts = { + enable = true, + }, }, procMacro = { enable = true @@ -366,7 +368,9 @@ if executable('rust-analyzer') \ 'whitelist': ['rust'], \ 'initialization_options': { \ 'cargo': { - \ 'loadOutDirsFromCheck': v:true, + \ 'buildScripts': { + \ 'enable': v:true, + \ }, \ }, \ 'procMacro': { \ 'enable': v:true, @@ -529,7 +533,9 @@ For example, a very common configuration is to enable proc-macro support, can be ---- { "cargo": { - "loadOutDirsFromCheck": true, + "buildScripts": { + "enable": true, + }, }, "procMacro": { "enable": true, |
