fix: show custom check-command

This commit is contained in:
Florian-Schoenherr 2021-11-19 16:22:39 +01:00 committed by GitHub
parent 4c20d6879f
commit 7e25f1b7e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {