John Kitchin <jkitc...@andrew.cmu.edu> wrote: > This kind of repeated command seems to be a good application for > hydra.
True. Basic navigation could be set up with something like this: #+begin_src elisp (defhydra hydra-org-navigation () "Org navigation" ("p" org-previous-visible-heading "previous heading") ("n" org-next-visible-heading "next heading") ("f" org-forward-heading-same-level "forward heading") ("b" org-backward-heading-same-level "backward heading") ("u" outline-up-heading "up heading") ("q" nil "cancel")) #+end_src -- Kyle