Function: org-fold-show-siblings

org-fold-show-siblings is a byte-compiled function defined in org-fold.el.gz.

Signature

(org-fold-show-siblings)

Documentation

Show all siblings of the current headline.

Aliases

org-show-siblings (obsolete since 9.6)

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-fold.el.gz
(defun org-fold-show-siblings ()
  "Show all siblings of the current headline."
  (save-excursion
    (while (org-goto-sibling) (org-fold-heading nil)))
  (save-excursion
    (while (org-goto-sibling 'previous)
      (org-fold-heading nil))))