Function: org-roam-ref-remove

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

Signature

(org-roam-ref-remove &optional REF)

Documentation

Remove a REF from the node at point.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-node.el
(defun org-roam-ref-remove (&optional ref)
  "Remove a REF from the node at point."
  (interactive)
  (let ((node (org-roam-node-at-point 'assert)))
    (save-excursion
      (goto-char (org-roam-node-point node))
      (org-roam-property-remove "ROAM_REFS" ref))))