Variable: org-export-dispatch-use-expert-ui

org-export-dispatch-use-expert-ui is a customizable variable defined in ox.el.gz.

Value

nil

Documentation

Non-nil means using a non-intrusive org-export-dispatch.

In that case, no help buffer is displayed. Though, an indicator for current export scope is added to the prompt ("b" when output is restricted to body only, "s" when it is restricted to the current subtree, "v" when only visible elements are considered for export, "f" when publishing functions should be passed the FORCE argument and "a" when the export should be asynchronous). Also, [?] allows switching back to standard mode.

This variable was added, or its default value changed, in Org version
8.0.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-dispatch-use-expert-ui nil
  "Non-nil means using a non-intrusive `org-export-dispatch'.
In that case, no help buffer is displayed.  Though, an indicator
for current export scope is added to the prompt (\"b\" when
output is restricted to body only, \"s\" when it is restricted to
the current subtree, \"v\" when only visible elements are
considered for export, \"f\" when publishing functions should be
passed the FORCE argument and \"a\" when the export should be
asynchronous).  Also, [?] allows switching back to standard
mode."
  :group 'org-export-general
  :version "24.4"
  :package-version '(Org . "8.0")
  :type 'boolean)