diff options
| author | Florian-Schoenherr <florian.schoenherr99@gmail.com> | 2021-11-09 21:52:55 +0100 |
|---|---|---|
| committer | Florian-Schoenherr <florian.schoenherr99@gmail.com> | 2021-11-09 21:52:55 +0100 |
| commit | 4fb76743ca659c132e8fbe6279b96d85dfb576bd (patch) | |
| tree | 9499f37f509f6785fa73278c5e87e06dd58f5f0a | |
| parent | 3c786bd7fdd232cd9de31d5c680018d725eea0fd (diff) | |
| download | rust-4fb76743ca659c132e8fbe6279b96d85dfb576bd.tar.gz rust-4fb76743ca659c132e8fbe6279b96d85dfb576bd.zip | |
fix: show the right check-command
Signed-off-by: Florian-Schoenherr <florian.schoenherr99@gmail.com>
| -rw-r--r-- | crates/rust-analyzer/src/main_loop.rs | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/main_loop.rs b/crates/rust-analyzer/src/main_loop.rs index 4a1060596be..8f00c6f6df3 100644 --- a/crates/rust-analyzer/src/main_loop.rs +++ b/crates/rust-analyzer/src/main_loop.rs @@ -406,7 +406,19 @@ impl GlobalState { // 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. 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 { format!("cargo check (#{})", id + 1) }; |
