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.
This commit is contained in:
2022-04-28 12:06:56 +01:00
parent cb719af306
commit 911bdb7182

View File

@@ -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))