Variable: org-babel-comint-async-indicator

org-babel-comint-async-indicator is a buffer-local variable defined in ob-comint.el.gz.

Documentation

Regular expression that org-babel-comint-async-filter scans for.

It should have 2 parenthesized expressions, e.g. "org_babel_async_\\(start\\|end\\|file\\)_\\(.*\\)". The first parenthesized expression determines whether the token is delimiting a result block, or whether the result is in a file. If delimiting a block, the second expression gives a UUID for the location to insert the result. Otherwise, the result is in a tmp file, and the second expression gives the file name.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ob-comint.el.gz
;;; Async evaluation

(defvar-local org-babel-comint-async-indicator nil
  "Regular expression that `org-babel-comint-async-filter' scans for.
It should have 2 parenthesized expressions,
e.g. \"org_babel_async_\\(start\\|end\\|file\\)_\\(.*\\)\".  The
first parenthesized expression determines whether the token is
delimiting a result block, or whether the result is in a file.
If delimiting a block, the second expression gives a UUID for the
location to insert the result.  Otherwise, the result is in a tmp
file, and the second expression gives the file name.")