Function: org-roam-ref-find

org-roam-ref-find is an autoloaded, interactive and byte-compiled function defined in org-roam-node.el.

Signature

(org-roam-ref-find &optional INITIAL-INPUT FILTER-FN)

Documentation

Find and open an Org-roam node that's dedicated to a specific ref.

INITIAL-INPUT is the initial input to the prompt. FILTER-FN is a function to filter out nodes: it takes an org-roam-node, and when nil is returned the node will be filtered out.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-node.el
;;;; Finders
;;;###autoload
(defun org-roam-ref-find (&optional initial-input filter-fn)
  "Find and open an Org-roam node that's dedicated to a specific ref.
INITIAL-INPUT is the initial input to the prompt.
FILTER-FN is a function to filter out nodes: it takes an `org-roam-node',
and when nil is returned the node will be filtered out."
  (interactive)
  (let* ((node (org-roam-ref-read initial-input filter-fn)))
    (org-roam-node-visit node)))