Function: hyrolo-outline-show-children

hyrolo-outline-show-children is an interactive and byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-outline-show-children &optional LEVEL)

Documentation

Show all direct subheadings of this heading.

Prefix arg LEVEL is how many levels below the current level should be shown. Default is enough to cause the following heading to appear.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-outline-show-children (&optional level)
  "Show all direct subheadings of this heading.
Prefix arg LEVEL is how many levels below the current level should be shown.
Default is enough to cause the following heading to appear."
  (interactive "P")
  (setq hyrolo-reveal-ignore-this-command t)
  (hyrolo-funcall-match (lambda () (outline-show-children level)) t))