diff options
| author | Maybe Lapkin <waffle.lapkin@gmail.com> | 2024-11-09 00:37:29 +0100 |
|---|---|---|
| committer | Maybe Lapkin <waffle.lapkin@gmail.com> | 2024-11-09 01:27:29 +0100 |
| commit | 22069682ed634066efb6dd9e8af0956d1704ab05 (patch) | |
| tree | c37c6941ea81045a1a338bdce8737980d26d88d2 | |
| parent | 59cec72a57af178767a7b8e7f624b06cc50f1087 (diff) | |
| download | rust-22069682ed634066efb6dd9e8af0956d1704ab05.tar.gz rust-22069682ed634066efb6dd9e8af0956d1704ab05.zip | |
Use a separate dir for r-a builds consistently in helix config
| -rw-r--r-- | src/etc/rust_analyzer_helix.toml | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/etc/rust_analyzer_helix.toml b/src/etc/rust_analyzer_helix.toml index 9998ebcc03c..afddd089eb1 100644 --- a/src/etc/rust_analyzer_helix.toml +++ b/src/etc/rust_analyzer_helix.toml @@ -1,3 +1,12 @@ +# This config uses a separate build directory for rust-analyzer, +# so that r-a's checks don't block user `x` commands and vice-verse. +# R-a's build directory is located in `build/rust-analyzer`. +# +# To build rustfmt and proc macro server for r-a run the following command: +# ``` +# x b proc-macro-srv-cli rustfmt --stage 0 --build-dir build/rust-analyzer +# ``` + [language-server.rust-analyzer.config] linkedProjects = [ "Cargo.toml", @@ -17,16 +26,18 @@ overrideCommand = [ "x.py", "check", "--json-output", + "--build-dir", + "build/rust-analyzer", ] [language-server.rust-analyzer.config.rustfmt] overrideCommand = [ - "build-rust-analyzer/host/rustfmt/bin/rustfmt", + "build/rust-analyzer/host/rustfmt/bin/rustfmt", "--edition=2021" ] [language-server.rust-analyzer.config.procMacro] -server = "build-rust-analyzer/host/stage0/libexec/rust-analyzer-proc-macro-srv" +server = "build/rust-analyzer/host/stage0/libexec/rust-analyzer-proc-macro-srv" enable = true [language-server.rust-analyzer.config.rustc] @@ -47,4 +58,6 @@ overrideCommand = [ "x.py", "check", "--json-output", + "--build-dir", + "build/rust-analyzer", ] |
