fix: show custom check-command
This commit is contained in:
committed by
GitHub
parent
4c20d6879f
commit
7e25f1b7e2
@@ -407,16 +407,7 @@ impl GlobalState {
|
|||||||
// the title, or the editor complains. Note that this is a user-facing string.
|
// the title, or the editor complains. Note that this is a user-facing string.
|
||||||
let title = if self.flycheck.len() == 1 {
|
let title = if self.flycheck.len() == 1 {
|
||||||
match self.config.flycheck() {
|
match self.config.flycheck() {
|
||||||
Some(flycheck::FlycheckConfig::CargoCommand {
|
Some(config) => format!("{}", config),
|
||||||
command,
|
|
||||||
..
|
|
||||||
}) => {
|
|
||||||
format!("cargo {}", command)
|
|
||||||
}
|
|
||||||
Some(flycheck::FlycheckConfig::CustomCommand {
|
|
||||||
command,
|
|
||||||
..
|
|
||||||
}) => command,
|
|
||||||
None => "cargo check".to_string(),
|
None => "cargo check".to_string(),
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user