We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c20d68 commit 7e25f1bCopy full SHA for 7e25f1b
crates/rust-analyzer/src/main_loop.rs
@@ -407,16 +407,7 @@ impl GlobalState {
407
// the title, or the editor complains. Note that this is a user-facing string.
408
let title = if self.flycheck.len() == 1 {
409
match self.config.flycheck() {
410
- Some(flycheck::FlycheckConfig::CargoCommand {
411
- command,
412
- ..
413
- }) => {
414
- format!("cargo {}", command)
415
- }
416
- Some(flycheck::FlycheckConfig::CustomCommand {
417
418
419
- }) => command,
+ Some(config) => format!("{}", config),
420
None => "cargo check".to_string(),
421
}
422
} else {
0 commit comments