Function: magit-section-hide-children

magit-section-hide-children is an interactive and byte-compiled function defined in magit-section.el.

Signature

(magit-section-hide-children SECTION)

Documentation

Recursively hide the bodies of children of the current section.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-section-20260330.1102/magit-section.el
(defun magit-section-hide-children (section)
  "Recursively hide the bodies of children of the current section."
  (interactive (list (magit-current-section)))
  (mapc #'magit-section-hide (oref section children)))