aboutsummaryrefslogtreecommitdiff
path: root/.config/emacs/lisp/evil-collection/modes/vundo/README.org
diff options
context:
space:
mode:
Diffstat (limited to '.config/emacs/lisp/evil-collection/modes/vundo/README.org')
-rw-r--r--.config/emacs/lisp/evil-collection/modes/vundo/README.org31
1 files changed, 31 insertions, 0 deletions
diff --git a/.config/emacs/lisp/evil-collection/modes/vundo/README.org b/.config/emacs/lisp/evil-collection/modes/vundo/README.org
new file mode 100644
index 0000000..04e505b
--- /dev/null
+++ b/.config/emacs/lisp/evil-collection/modes/vundo/README.org
@@ -0,0 +1,31 @@
+* vundo
+
+ Evil bindings for [[https://github.com/casouri/vundo][vundo]], visual undo tree.
+
+ Upstream defaults to emacs state; evil-collection forces normal state on
+ entry, hides the evil cursor, and disables =hl-line-mode= locally.
+
+** Key bindings
+
+ | Command | Original | Evil |
+ |---------------------+--------------+--------------------------------|
+ | =vundo-forward= | =f=, =right= | =l=, =C-f=, =right= |
+ | =vundo-backward= | =b=, =left= | =h=, =C-b=, =left=, =DEL= |
+ | =vundo-next= | =n= | =j=, =C-n=, =C-j=, =M-j= |
+ | =vundo-previous= | =p= | =k=, =C-p=, =C-k=, =M-k= |
+ | =vundo-stem-root= | =a= | =H= (evil-window-top remap) |
+ | =vundo-stem-end= | =e= | =L= (evil-window-bottom remap) |
+ | =vundo-next-root= | =w= | =w= |
+ | =vundo-confirm= | =RET= | =RET=, =ZZ= |
+ | =vundo-quit= | =q=, =C-g= | =q=, =ZQ= |
+ | =vundo-diff= | =d= | =d= |
+ | =vundo-diff-mark= | =m= | =m= |
+ | =vundo-diff-unmark= | =u= | =u= |
+ | =vundo--inspect= | =i= | =i= |
+ | =vundo--debug= | =D= | =D= |
+
+ Direction keys are wired via =[remap]= against the corresponding evil
+ motion command (=evil-backward-char=, =evil-forward-char=, etc.) so they
+ follow any user rebinding of those motions. =vundo-goto-last-saved= (=l=
+ upstream) and =vundo-goto-next-saved= (=r= upstream) are shadowed by the
+ evil motion remaps; call them via =M-x= if needed.