From e07e42dcfb24dae348c625822abf74fa87968bff Mon Sep 17 00:00:00 2001 From: Gokul Soumya Date: Sat, 24 Jul 2021 23:44:19 +0200 Subject: [PATCH] fix(term): undo-ing code actions --- helix-term/src/commands.rs | 1 + 1 file changed, 1 insertion(+) 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) => {