From 911bdb71821e6e0166dd8d9f1742aa1916e28ed8 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 28 Apr 2022 12:06:56 +0100 Subject: [PATCH] feat(editor): add extra navigation keybindings for vundo Simply add ctrl variants of the standard f/b/n/p/a/e keybindings enabled in vundo-mode-map. --- modules/editor/siren-vundo.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/editor/siren-vundo.el b/modules/editor/siren-vundo.el index 0e0b5ff..2dce741 100644 --- a/modules/editor/siren-vundo.el +++ b/modules/editor/siren-vundo.el @@ -10,6 +10,13 @@ :demand :general ("C-x u" 'vundo) + (:keymaps 'vundo-mode-map + "C-f" 'vundo-forward + "C-b" 'vundo-backward + "C-n" 'vundo-next + "C-p" 'vundo-previous + "C-a" 'vundo-stem-root + "C-e" 'vundo-stem-end) :custom (vundo-glyph-alist vundo-unicode-symbols))