From 475b3701364ac296e721e05b59f5f12101e760c1 Mon Sep 17 00:00:00 2001 From: JJ Date: Wed, 1 May 2024 14:15:18 -0700 Subject: [PATCH] Fix writes from insert mode not properly updating the revision history ref: https://github.com/helix-editor/helix/issues/3501 ref: https://github.com/helix-editor/helix/issues/6513 ref: https://github.com/helix-editor/helix/pull/7226 --- helix-term/src/ui/editor.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 7d28b62c..f761a546 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -850,6 +850,10 @@ impl EditorView { cxt.editor.autoinfo = self.keymaps.sticky().map(|node| node.infobox()); let mut execute_command = |command: &commands::MappableCommand| { + let doc = doc_mut!(cxt.editor); + let view = view_mut!(cxt.editor); + doc.append_changes_to_history(view); + command.execute(cxt); helix_event::dispatch(PostCommand { command, cx: cxt });