From 47f84d04eab0b16d1f43aa491e75c6454ef9c216 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Fri, 31 Jan 2025 14:07:22 -0500 Subject: [PATCH] Set a statusline error for formatter errors in `:format` --- helix-term/src/commands.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index db912e6c0..6f0bc394f 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -3514,6 +3514,10 @@ async fn make_format_callback( } } Err(err) => { + if write.is_none() { + editor.set_error(err.to_string()); + return; + } log::info!("failed to format '{}': {err}", doc.display_name()); } }