Function: org-export-stack

org-export-stack is an interactive and byte-compiled function defined in ox.el.gz.

Signature

(org-export-stack)

Documentation

Menu for asynchronous export results and running processes.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defun org-export-stack ()
  "Menu for asynchronous export results and running processes."
  (interactive)
  (let ((buffer (get-buffer-create "*Org Export Stack*")))
    (with-current-buffer buffer
      (org-export-stack-mode)
      (tabulated-list-print t))
    (pop-to-buffer buffer))
  (message "Type \"q\" to quit, \"?\" for help"))