Function: org-roam-remove-property

org-roam-remove-property is a byte-compiled function defined in org-roam-utils.el.

This function is obsolete since org-roam 2.1; use org-roam-property-remove instead.

Signature

(org-roam-remove-property PROP &optional VAL)

Documentation

Remove VAL value from PROP property for the node at point.

Both VAL and PROP are strings.

If VAL is not specified, user is prompted to select a value.

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-utils.el
(defun org-roam-remove-property (prop &optional val)
  "Remove VAL value from PROP property for the node at point.
Both VAL and PROP are strings.

If VAL is not specified, user is prompted to select a value."
  (org-roam-property-remove prop val))