Function: org-roam-capture-p

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

Signature

(org-roam-capture-p)

Documentation

Return t if the current capture process is an Org-roam capture.

This function is to only be called when org-capture-plist is valid for the capture (i.e. initialization, and finalization of the capture).

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-capture.el
;;; Capture process
(defun org-roam-capture-p ()
  "Return t if the current capture process is an Org-roam capture.
This function is to only be called when `org-capture-plist' is
valid for the capture (i.e. initialization, and finalization of
the capture)."
  (plist-get org-capture-plist :org-roam))