Function: actypes::link-to-org-id
actypes::link-to-org-id is a byte-compiled function defined in
hactypes.el.
Signature
(actypes::link-to-org-id ID &optional TITLE)
Documentation
Display the Org entry, if any, for ID with optional _TITLE.
ID is a uuid without any 'id:' prefix.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hactypes.el
(defact link-to-org-id (id &optional _title)
"Display the Org entry, if any, for ID with optional _TITLE.
ID is a uuid without any \\='id:' prefix."
(when (stringp id)
(let* ((inhibit-message t) ;; Inhibit `org-id-find' status msgs
(m (org-id-find id 'marker)))
(when m
(hact 'link-to-org-id-marker m)))))