We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f1f3a8 commit 364fbd7Copy full SHA for 364fbd7
crates/rust-analyzer/src/config.rs
@@ -132,7 +132,7 @@ impl Config {
132
set(value, "/cargo/features", &mut self.cargo.features);
133
set(value, "/cargo/loadOutDirsFromCheck", &mut self.cargo.load_out_dirs_from_check);
134
135
- match get::<bool>(value, "/procMacro/enable") {
+ match get(value, "/procMacro/enable") {
136
Some(true) => {
137
if let Ok(path) = std::env::current_exe() {
138
self.proc_macro_srv = Some((path.to_string_lossy().to_string(), vec!["proc-macro".to_string()]));
0 commit comments