Function: hyrolo-outline-back-to-heading

hyrolo-outline-back-to-heading is a byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-outline-back-to-heading &optional INVISIBLE-OK)

Documentation

Move to previous heading line, or beg of this line if it's a heading.

Only visible heading lines are considered, unless INVISIBLE-OK is non-nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
;;; In `hyrolo-mode' replace `outline-minor-mode' bindings with hyrolo-* overrides.
;;; Wrap outline movement commands with a `hyrolo-funcall-match' call.
;;; Wrap outline whole buffer commands with a `hyrolo-map-matches' call.
(defun hyrolo-outline-back-to-heading (&optional invisible-ok)
  "Move to previous heading line, or beg of this line if it's a heading.
Only visible heading lines are considered, unless INVISIBLE-OK is non-nil."
  (hyrolo-funcall-match (lambda () (outline-back-to-heading invisible-ok))))