Unnamed repository; edit this file 'description' to name the repository.
fix(term): undo-ing code actions
Gokul Soumya 2021-07-25
parent 8da58fe · commit e07e42d
-rw-r--r--helix-term/src/commands.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 4d707de4..06dca5d5 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -2188,6 +2188,7 @@ fn apply_workspace_edit(
offset_encoding,
);
doc.apply(&transaction, view.id);
+ doc.append_changes_to_history(view.id);
}
}
lsp::DocumentChanges::Operations(operations) => {