mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Simply add ctrl variants of the standard f/b/n/p/a/e keybindings enabled in vundo-mode-map.
26 lines
526 B
EmacsLisp
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
|