Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--crates/rust-analyzer/src/main_loop.rs11
1 files changed, 1 insertions, 10 deletions
diff --git a/crates/rust-analyzer/src/main_loop.rs b/crates/rust-analyzer/src/main_loop.rs
index 8f00c6f6df..eab4b2e6a3 100644
--- a/crates/rust-analyzer/src/main_loop.rs
+++ b/crates/rust-analyzer/src/main_loop.rs
@@ -407,16 +407,7 @@ impl GlobalState {
// the title, or the editor complains. Note that this is a user-facing string.
let title = if self.flycheck.len() == 1 {
match self.config.flycheck() {
- Some(flycheck::FlycheckConfig::CargoCommand {
- command,
- ..
- }) => {
- format!("cargo {}", command)
- }
- Some(flycheck::FlycheckConfig::CustomCommand {
- command,
- ..
- }) => command,
+ Some(config) => format!("{}", config),
None => "cargo check".to_string(),
}
} else {