diff options
-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") |