diff options
author | jao <jao@gnu.org> | 2022-04-16 02:13:47 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-04-16 02:13:52 +0100 |
commit | f9394f86dc650d1151777eae649274580b3a601b (patch) | |
tree | 55cb945e52b6307a487cb6f42edaf1cab3821538 | |
parent | e9cf3ab06841d773ba712e8daf61410762f6e251 (diff) | |
download | elibs-f9394f86dc650d1151777eae649274580b3a601b.tar.gz elibs-f9394f86dc650d1151777eae649274580b3a601b.tar.bz2 |
vundo looks nice
-rw-r--r-- | init.org | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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") |