Unnamed repository; edit this file 'description' to name the repository.
Fix formatting
| -rw-r--r-- | crates/rust-analyzer/src/reload.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/reload.rs b/crates/rust-analyzer/src/reload.rs index a6b8bd3952..3bf3cd5622 100644 --- a/crates/rust-analyzer/src/reload.rs +++ b/crates/rust-analyzer/src/reload.rs @@ -659,7 +659,9 @@ impl GlobalState { Config::user_config_dir_path().as_deref(), ); - if (self.proc_macro_clients.is_empty() || !same_workspaces) && self.config.expand_proc_macros() { + if (self.proc_macro_clients.is_empty() || !same_workspaces) + && self.config.expand_proc_macros() + { info!("Spawning proc-macro servers"); // Workspaces referring to the same proc-macro server executable (i.e. the same |