summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2022-04-16 02:13:47 +0100
committerjao <jao@gnu.org>2022-04-16 02:13:52 +0100
commitf9394f86dc650d1151777eae649274580b3a601b (patch)
tree55cb945e52b6307a487cb6f42edaf1cab3821538
parente9cf3ab06841d773ba712e8daf61410762f6e251 (diff)
downloadelibs-f9394f86dc650d1151777eae649274580b3a601b.tar.gz
elibs-f9394f86dc650d1151777eae649274580b3a601b.tar.bz2
vundo looks nice
-rw-r--r--init.org19
1 files changed, 19 insertions, 0 deletions
diff --git a/init.org b/init.org
index d0f83b0..1eec81c 100644
--- a/init.org
+++ b/init.org
@@ -1032,6 +1032,25 @@
(require 'jao-skel-haskell)
(require 'jao-skel-latex))
#+end_src
+*** Undo
+ f to go forward
+ b to go backward
+
+ n to go to the node below when you at a branching point
+ p to go to the node above
+
+ a to go back to the last branching point
+ e to go forward to the end/tip of the branch
+
+ #+begin_src emacs-lisp
+ (use-package vundo
+ :ensure t
+ :config
+ (set-face-attribute 'vundo-default nil :family "Symbola")
+ (setq vundo-glyph-alist vundo-unicode-symbols)
+ :bind (("C-?" . vundo)))
+
+ #+end_src
*** Completion
#+begin_src emacs-lisp
(jao-load-org "completion")