mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 22:01:37 +00:00
fix: make error message in the status bar more useful
At the moment,the popup is just a bazillion of Cargo's "Compiling this\nCompiling that", which is not that useful. --quiet still displays error, which is what we needc
This commit is contained in:
parent
6cd669e880
commit
363cef5c0e
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ impl WorkspaceBuildData {
|
||||||
cmd.env("RA_RUSTC_WRAPPER", "1");
|
cmd.env("RA_RUSTC_WRAPPER", "1");
|
||||||
}
|
}
|
||||||
|
|
||||||
cmd.args(&["check", "--workspace", "--message-format=json", "--manifest-path"])
|
cmd.args(&["check", "--quiet", "--workspace", "--message-format=json", "--manifest-path"])
|
||||||
.arg(cargo_toml.as_ref());
|
.arg(cargo_toml.as_ref());
|
||||||
|
|
||||||
// --all-targets includes tests, benches and examples in addition to the
|
// --all-targets includes tests, benches and examples in addition to the
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue