aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src
diff options
context:
space:
mode:
Diffstat (limited to 'helix-view/src')
-rw-r--r--helix-view/src/commands.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-view/src/commands.rs b/helix-view/src/commands.rs
index 52e09dd6..f2e62044 100644
--- a/helix-view/src/commands.rs
+++ b/helix-view/src/commands.rs
@@ -404,6 +404,8 @@ fn append_changes_to_history(view: &mut View) {
let old_state = std::mem::replace(&mut view.doc.old_state, view.doc.state.clone());
// TODO: take transaction by value?
view.doc.history.commit_revision(&transaction, &old_state);
+
+ // TODO: notify LSP of changes
}
pub fn normal_mode(view: &mut View, _count: usize) {