Function: org-roam-capture--put

org-roam-capture--put is a byte-compiled function defined in org-roam-capture.el.

Signature

(org-roam-capture--put PROP VALUE)

Documentation

Set property PROP to VALUE in the org-roam-capture-template.

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-capture.el
(defun org-roam-capture--put (prop value)
  "Set property PROP to VALUE in the `org-roam-capture-template'."
  (let ((p (plist-get org-capture-plist :org-roam)))
    (setq org-capture-plist
          (plist-put org-capture-plist
                     :org-roam
                     (plist-put p prop value)))))