From 2e28f35ce24df4aeaed35ce4b1db01166e6d76a5 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Mon, 26 Apr 2021 18:58:51 +0200 Subject: [PATCH 1/2] more RA config suggestions --- src/building/suggested.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/building/suggested.md b/src/building/suggested.md index 6e0f830c6..4258bc39f 100644 --- a/src/building/suggested.md +++ b/src/building/suggested.md @@ -34,7 +34,9 @@ you can write: "rust-analyzer.rustfmt.overrideCommand": [ "./build/TARGET_TRIPLE/stage0/bin/rustfmt" ], - "editor.formatOnSave": true + "editor.formatOnSave": true, + "rust-analyzer.cargo.runBuildScripts": false, + "rust-analyzer.procMacro.enable": false, } ``` From 232b207e80fe30f5cf52b6d946db3b13664a0d09 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Tue, 27 Apr 2021 00:30:17 +0200 Subject: [PATCH 2/2] silly JSON Co-authored-by: Joshua Nelson --- src/building/suggested.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/building/suggested.md b/src/building/suggested.md index 4258bc39f..ebefd61c1 100644 --- a/src/building/suggested.md +++ b/src/building/suggested.md @@ -36,7 +36,7 @@ you can write: ], "editor.formatOnSave": true, "rust-analyzer.cargo.runBuildScripts": false, - "rust-analyzer.procMacro.enable": false, + "rust-analyzer.procMacro.enable": false } ```