Function: org-roam-alias-add

org-roam-alias-add is an interactive and byte-compiled function defined in org-roam-node.el.

Signature

(org-roam-alias-add ALIAS)

Documentation

Add ALIAS to the node at point.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-node.el
;;;; Editing
(defun org-roam-alias-add (alias)
  "Add ALIAS to the node at point."
  (interactive "sAlias: ")
  (let ((node (org-roam-node-at-point 'assert)))
    (save-excursion
      (goto-char (org-roam-node-point node))
      (org-roam-property-add "ROAM_ALIASES" alias))))