Files
.emacs.d/modules/editor/siren-vundo.el
Jim Myhrberg 911bdb7182 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.
2022-04-28 12:08:11 +01:00

26 lines
526 B
EmacsLisp

;;; siren-vundo.el --- jimeh's Emacs Siren: vundo configuration.
;;; Commentary:
;; Basic configuration for vundo.
;;; Code:
(use-package vundo
: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))
(provide 'siren-vundo)
;;; siren-vundo.el ends here