Variable: org-export-show-temporary-export-buffer
org-export-show-temporary-export-buffer is a customizable variable
defined in ox.el.gz.
Value
t
Documentation
Non-nil means show buffer after exporting to temp buffer.
When Org exports to a file, the buffer visiting that file is never shown, but remains buried. However, when exporting to a temporary buffer, that buffer is popped up in a second window. When this variable is nil, the buffer remains buried also in these cases.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-show-temporary-export-buffer t
"Non-nil means show buffer after exporting to temp buffer.
When Org exports to a file, the buffer visiting that file is never
shown, but remains buried. However, when exporting to
a temporary buffer, that buffer is popped up in a second window.
When this variable is nil, the buffer remains buried also in
these cases."
:group 'org-export-general
:type 'boolean)