Function: magit-section-show-children
magit-section-show-children is an interactive and byte-compiled
function defined in magit-section.el.
Signature
(magit-section-show-children SECTION &optional DEPTH)
Documentation
Recursively show the bodies of children of the current section.
With a prefix argument show children that deep and hide deeper children.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-section-20260330.1102/magit-section.el
(defun magit-section-show-children (section &optional depth)
"Recursively show the bodies of children of the current section.
With a prefix argument show children that deep and hide deeper
children."
(interactive (list (magit-current-section)))
(magit-section-show-children-1 section depth)
(magit-section-show section))