Function: org-capture-string
org-capture-string is an autoloaded, interactive and byte-compiled
function defined in org-capture.el.gz.
Signature
(org-capture-string STRING &optional KEYS)
Documentation
Capture STRING with the template selected by KEYS.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-capture.el.gz
;;;###autoload
(defun org-capture-string (string &optional keys)
"Capture STRING with the template selected by KEYS."
(interactive "sInitial text: \n")
(let ((org-capture-initial string)
(org-capture-entry (org-capture-select-template keys)))
(org-capture)))