Variable: org-export-initial-scope
org-export-initial-scope is a customizable variable defined in
ox.el.gz.
Value
buffer
Documentation
The initial scope when exporting with org-export-dispatch.
This variable can be either set to buffer or subtree.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-initial-scope 'buffer
"The initial scope when exporting with `org-export-dispatch'.
This variable can be either set to `buffer' or `subtree'."
:group 'org-export-general
:type '(choice
(const :tag "Export current buffer" buffer)
(const :tag "Export current subtree" subtree)))