diff options
Diffstat (limited to 'helix-term/src/commands')
-rw-r--r-- | helix-term/src/commands/typed.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index abe6dd97..4b14f5ec 100644 --- a/helix-term/src/commands/typed.rs +++ b/helix-term/src/commands/typed.rs @@ -355,6 +355,8 @@ fn write_impl( None }; + doc.append_changes_to_history(view); + if fmt.is_none() { let id = doc.id(); cx.editor.save(id, path, force)?; @@ -732,6 +734,9 @@ pub fn write_all_impl( None }; + let view = view_mut!(cx.editor); + doc.append_changes_to_history(view); + if fmt.is_none() { cx.editor.save::<PathBuf>(doc_id, None, force)?; } |