Function: hyrolo-outline-hide-body
hyrolo-outline-hide-body is an interactive and byte-compiled function
defined in hyrolo.el.
Signature
(hyrolo-outline-hide-body)
Documentation
Hide all body lines in buffer, leaving all headings visible.
Note that this does not hide the lines preceding the first heading line.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-outline-hide-body ()
"Hide all body lines in buffer, leaving all headings visible.
Note that this does not hide the lines preceding the first heading line."
(interactive)
(setq hyrolo-reveal-ignore-this-command t)
(hyrolo-map-matches #'outline-hide-body t))