Function: allout-hide-current-leaves

allout-hide-current-leaves is an interactive and byte-compiled function defined in allout.el.gz.

Signature

(allout-hide-current-leaves)

Documentation

Hide the bodies of the current topic and all its offspring.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_   > allout-hide-current-leaves ()
(defun allout-hide-current-leaves ()
  "Hide the bodies of the current topic and all its offspring."
  (interactive)
  (allout-back-to-current-heading)
  (allout-hide-region-body (point) (progn (allout-end-of-current-subtree)
                                           (point))))