Error when rustfmt component is unavailable
This commit is contained in:
parent
d3dfa18071
commit
d3b804d11d
1 changed files with 4 additions and 1 deletions
|
|
@ -928,7 +928,10 @@ pub(crate) fn handle_formatting(
|
|||
|
||||
if !output.status.success() {
|
||||
match output.status.code() {
|
||||
Some(1) if !captured_stderr.contains("not installed") => {
|
||||
Some(1)
|
||||
if !captured_stderr.contains("not installed")
|
||||
&& !captured_stderr.contains("not available") =>
|
||||
{
|
||||
// While `rustfmt` doesn't have a specific exit code for parse errors this is the
|
||||
// likely cause exiting with 1. Most Language Servers swallow parse errors on
|
||||
// formatting because otherwise an error is surfaced to the user on top of the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue