Skip to content

Commit f16c968

Browse files
committed
remove invalid workspaceFolder prefix from the zed rust-analyzer config
1 parent 092a284 commit f16c968

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/bootstrap/src/core/build_steps/setup.rs

+1
Original file line numberDiff line numberDiff line change
@@ -606,6 +606,7 @@ Select which editor you would like to set up [default: None]: ";
606606
EditorKind::Zed => &[
607607
"bbce727c269d1bd0c98afef4d612eb4ce27aea3c3a8968c5f10b31affbc40b6c",
608608
"a5380cf5dd9328731aecc5dfb240d16dac46ed272126b9728006151ef42f5909",
609+
"9d6f1f99e8a98467173126fcb480aa8203ea5bdabdb55a903bee03da8307e483".
609610
],
610611
}
611612
}

src/etc/rust_analyzer_zed.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@
2828
"compiler/rustc_codegen_gcc/Cargo.toml"
2929
],
3030
"procMacro": {
31-
"enable": true,
32-
"server": "${workspaceFolder}/build/host/stage0/libexec/rust-analyzer-proc-macro-srv"
31+
"enable": true,
32+
"server": "build/host/stage0/libexec/rust-analyzer-proc-macro-srv"
3333
},
3434
"rustc": {
3535
"source": "./Cargo.toml"
3636
},
3737
"rustfmt": {
3838
"overrideCommand": [
39-
"${workspaceFolder}/build/host/rustfmt/bin/rustfmt",
39+
"build/host/rustfmt/bin/rustfmt",
4040
"--edition=2021"
4141
]
4242
},

0 commit comments

Comments
 (0)