From 518426b9f48369f72a49ccdecb23977fac178983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Wed, 7 Oct 2020 18:31:16 +0900 Subject: [PATCH] Factor out append_changes_to_history --- helix-view/src/commands.rs | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/helix-view/src/commands.rs b/helix-view/src/commands.rs index f2bc35003..aafc6202f 100644 --- a/helix-view/src/commands.rs +++ b/helix-view/src/commands.rs @@ -251,6 +251,8 @@ pub fn delete_selection(view: &mut View, _count: usize) { let transaction = Transaction::change_by_selection(&view.state, |range| (range.from(), range.to(), None)); transaction.apply(&mut view.state); + + append_changes_to_history(view); } pub fn change_selection(view: &mut View, count: usize) { @@ -268,9 +270,7 @@ pub fn collapse_selection(view: &mut View, _count: usize) { fn enter_insert_mode(view: &mut View) { view.state.mode = Mode::Insert; - // HAXX - view.state.changes = Some(ChangeSet::new(view.state.doc())); - view.state.old_state = Some((view.state.doc().clone(), view.state.selection.clone())); + append_changes_to_history(view); } // inserts at the start of each selection pub fn insert_mode(view: &mut View, _count: usize) { @@ -367,9 +367,7 @@ pub fn open_below(view: &mut View, _count: usize) { // O inserts a new line before each line with a selection -pub fn normal_mode(view: &mut View, _count: usize) { - view.state.mode = Mode::Normal; - +fn append_changes_to_history(view: &mut View) { if let Some(changes) = view.state.changes.take() { // Instead of doing this messy merge we could always commit, and based on transaction // annotations either add a new layer or compose into the previous one. @@ -382,6 +380,18 @@ pub fn normal_mode(view: &mut View, _count: usize) { view.history.commit_revision(&transaction, &old_state); } + // TODO: need to start the state with these vals + + // HAXX + view.state.changes = Some(ChangeSet::new(view.state.doc())); + view.state.old_state = Some((view.state.doc().clone(), view.state.selection.clone())); +} + +pub fn normal_mode(view: &mut View, _count: usize) { + view.state.mode = Mode::Normal; + + append_changes_to_history(view); + // if leaving append mode, move cursor back by 1 if view.state.restore_cursor { let text = &view.state.doc.slice(..); @@ -486,5 +496,6 @@ pub fn paste(view: &mut View, _count: usize) { }); transaction.apply(&mut view.state); + append_changes_to_history(view); } }