about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian-Schoenherr <65456722+Florian-Schoenherr@users.noreply.github.com>2021-11-19 16:22:39 +0100
committerGitHub <noreply@github.com>2021-11-19 16:22:39 +0100
commit7e25f1b7e26b9d0378995c8e5ad10f76a00da2ae (patch)
treef4ac8d7bef8a2bc998180d1f14bd6bc295494dee
parent4c20d6879f7b23c532dee908031caab178bb79fa (diff)
downloadrust-7e25f1b7e26b9d0378995c8e5ad10f76a00da2ae.tar.gz
rust-7e25f1b7e26b9d0378995c8e5ad10f76a00da2ae.zip
fix: show custom check-command
-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 8f00c6f6df3..eab4b2e6a30 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 {