Error when rustfmt component is unavailable

This commit is contained in:
Jonas Schievink 2021-04-05 00:33:11 +02:00
parent d3dfa18071
commit d3b804d11d

View File

@ -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