We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88024c7 commit 7066b8eCopy full SHA for 7066b8e
crates/rust-analyzer/src/bin/main.rs
@@ -77,12 +77,10 @@ fn try_main() -> Result<()> {
77
println!("{}", flags::RustAnalyzer::HELP);
78
return Ok(());
79
}
80
- with_extra_thread("rust-analyzer server thread", run_server)?;
+ with_extra_thread("LspServer", run_server)?;
81
82
flags::RustAnalyzerCmd::ProcMacro(flags::ProcMacro) => {
83
- with_extra_thread("rust-analyzer proc-macro expander", || {
84
- proc_macro_srv::cli::run().map_err(Into::into)
85
- })?;
+ with_extra_thread("MacroExpander", || proc_macro_srv::cli::run().map_err(Into::into))?;
86
87
flags::RustAnalyzerCmd::Parse(cmd) => cmd.run()?,
88
flags::RustAnalyzerCmd::Symbols(cmd) => cmd.run()?,
0 commit comments