mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Set a statusline error for formatter errors in :format
This commit is contained in:
parent
2367b20318
commit
47f84d04ea
1 changed files with 4 additions and 0 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue