From bbc98decea771ea843639cd2386ed68ac42bdcd0 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sat, 27 Jun 2020 14:20:50 +0100 Subject: [PATCH] fix(editor): Make undo-tree a bit more terminal friendly --- modules/editor/siren-undo-tree.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/editor/siren-undo-tree.el b/modules/editor/siren-undo-tree.el index f6e4768..2c20bce 100644 --- a/modules/editor/siren-undo-tree.el +++ b/modules/editor/siren-undo-tree.el @@ -29,7 +29,8 @@ :config ;; Unbind keys that I don't use. (unbind-key "C-/" undo-tree-map) - (unbind-key "C-?" undo-tree-map)) + (unbind-key "C-?" undo-tree-map) + (unbind-key "C-_" undo-tree-map)) (provide 'siren-undo-tree) ;;; siren-undo-tree.el ends here