mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 05:23:24 +00:00
fix: show the right check-command
Signed-off-by: Florian-Schoenherr <florian.schoenherr99@gmail.com>
This commit is contained in:
parent
3c786bd7fd
commit
4fb76743ca
1 changed files with 13 additions and 1 deletions
|
@ -406,7 +406,19 @@ impl GlobalState {
|
||||||
// When we're running multiple flychecks, we have to include a disambiguator in
|
// When we're running multiple flychecks, we have to include a disambiguator in
|
||||||
// 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 {
|
||||||
"cargo check".to_string()
|
match self.config.flycheck() {
|
||||||
|
Some(flycheck::FlycheckConfig::CargoCommand {
|
||||||
|
command,
|
||||||
|
..
|
||||||
|
}) => {
|
||||||
|
format!("cargo {}", command)
|
||||||
|
}
|
||||||
|
Some(flycheck::FlycheckConfig::CustomCommand {
|
||||||
|
command,
|
||||||
|
..
|
||||||
|
}) => command,
|
||||||
|
None => "cargo check".to_string(),
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
format!("cargo check (#{})", id + 1)
|
format!("cargo check (#{})", id + 1)
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue