Function: allout-indented-exposed-to-buffer

allout-indented-exposed-to-buffer is an interactive and byte-compiled function defined in allout.el.gz.

Signature

(allout-indented-exposed-to-buffer &optional ARG TOBUF)

Documentation

Present indented outline of outline's exposed portions in another buffer.

The resulting outline is not compatible with outline mode -- use allout-copy-exposed-to-buffer if you want that.

Use allout-flatten-exposed-to-buffer for numeric sectional presentation.

With repeat count, copy the exposed portions of only current topic.

Other buffer has current buffer's name with " exposed" appended to it, unless optional second arg TOBUF is specified, in which case it is used verbatim.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_   > allout-indented-exposed-to-buffer (&optional arg tobuf)
(defun allout-indented-exposed-to-buffer (&optional arg tobuf)
  "Present indented outline of outline's exposed portions in another buffer.

The resulting outline is not compatible with outline mode -- use
`allout-copy-exposed-to-buffer' if you want that.

Use `allout-flatten-exposed-to-buffer' for numeric sectional presentation.

With repeat count, copy the exposed portions of only current topic.

Other buffer has current buffer's name with \" exposed\" appended to
it, unless optional second arg TOBUF is specified, in which case it is
used verbatim."
  (interactive "P")
  (allout-copy-exposed-to-buffer arg tobuf 'indent))