Unnamed repository; edit this file 'description' to name the repository.
Merge #10808
10808: fix: show custom check-command r=Veykril a=Florian-Schoenherr just realized this is a lot cleaner and actually shows something on a custom command, also debugged it this time. Co-authored-by: Florian-Schoenherr <[email protected]>
bors[bot] 2021-11-19
parent 4c20d68 · parent 7e25f1b · commit cf2ddb9
-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 {