aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-03-15 15:21:42 +0000
committerGitHub <[email protected]>2021-03-15 15:21:42 +0000
commit106a5abbef7fb07bf65a173fc5e53e46fb207af7 (patch)
treef5cc7acdee11bc92d1cd53d8d50a4f26fa8a7849 /crates
parent5f6d71cf0c41ac063bdb35dffe7ec713b1dbac42 (diff)
parent469b739c2845581ca741917b42ee8ac1d5b8f2ba (diff)
Merge #8032
8032: Enable proc-macros by default r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates')
-rw-r--r--crates/rust-analyzer/src/config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/config.rs b/crates/rust-analyzer/src/config.rs
index 8af7871ac..8f541976e 100644
--- a/crates/rust-analyzer/src/config.rs
+++ b/crates/rust-analyzer/src/config.rs
@@ -172,7 +172,7 @@ config_data! {
172 notifications_cargoTomlNotFound: bool = "true", 172 notifications_cargoTomlNotFound: bool = "true",
173 173
174 /// Enable support for procedural macros, implies `#rust-analyzer.cargo.runBuildScripts#`. 174 /// Enable support for procedural macros, implies `#rust-analyzer.cargo.runBuildScripts#`.
175 procMacro_enable: bool = "false", 175 procMacro_enable: bool = "true",
176 /// Internal config, path to proc-macro server executable (typically, 176 /// Internal config, path to proc-macro server executable (typically,
177 /// this is rust-analyzer itself, but we override this in tests). 177 /// this is rust-analyzer itself, but we override this in tests).
178 procMacro_server: Option<PathBuf> = "null", 178 procMacro_server: Option<PathBuf> = "null",