Function: org-babel-header-arg-expand

org-babel-header-arg-expand is a byte-compiled function defined in ob-core.el.gz.

Signature

(org-babel-header-arg-expand)

Documentation

Call org-babel-enter-header-arg-w-completion in appropriate contexts
(the header line of a source block).

Source Code

;; Defined in /usr/src/emacs/lisp/org/ob-core.el.gz
;; Add support for completing-read insertion of header arguments after ":"
(defun org-babel-header-arg-expand ()
  "Call `org-babel-enter-header-arg-w-completion' in appropriate contexts
(the header line of a source block)."
  (when (and (equal (char-before) ?\:)
             (org-babel-in-src-block-header-p))
    (org-babel-enter-header-arg-w-completion (match-string 2))))