Function: hyrolo-outline-previous-visible-heading
hyrolo-outline-previous-visible-heading is an interactive and
byte-compiled function defined in hyrolo.el.
Signature
(hyrolo-outline-previous-visible-heading ARG)
Documentation
Move to the previous visible heading or match buffer header.
With ARG, repeats or can move forward if negative.
A heading is one that starts with an outline-regexp match.
A match buffer header is one that starts with hyrolo-hdr-regexp.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-outline-previous-visible-heading (arg)
"Move to the previous visible heading or match buffer header.
With ARG, repeats or can move forward if negative.
A heading is one that starts with an `outline-regexp' match.
A match buffer header is one that starts with `hyrolo-hdr-regexp'."
(interactive "p")
(hyrolo-outline-next-visible-heading (- arg)))