Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/handlers/auto_save.rs')
| -rw-r--r-- | helix-term/src/handlers/auto_save.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/helix-term/src/handlers/auto_save.rs b/helix-term/src/handlers/auto_save.rs index 4e154df8..47e2ecfd 100644 --- a/helix-term/src/handlers/auto_save.rs +++ b/helix-term/src/handlers/auto_save.rs @@ -87,7 +87,13 @@ fn request_auto_save(editor: &mut Editor) { jobs: &mut Jobs::new(), }; - if let Err(e) = commands::typed::write_all_impl(context, false, false) { + let options = commands::WriteAllOptions { + force: false, + write_scratch: false, + auto_format: false, + }; + + if let Err(e) = commands::typed::write_all_impl(context, options) { context.editor.set_error(format!("{}", e)); } } |