Function: allout-show-current-branches

allout-show-current-branches is an interactive and byte-compiled function defined in allout.el.gz.

Signature

(allout-show-current-branches)

Documentation

Show all subheadings of this heading, but not their bodies.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_   > allout-show-current-branches ()
(defun allout-show-current-branches ()
  "Show all subheadings of this heading, but not their bodies."
  (interactive)
  (let ((inhibit-field-text-motion t))
    (beginning-of-line))
  (allout-show-children t))