Function: actypes::link-to-org-id-marker
actypes::link-to-org-id-marker is a byte-compiled function defined in
hactypes.el.
Signature
(actypes::link-to-org-id-marker MARKER)
Documentation
Display the Org entry, if any, at MARKER.
See doc of ibtypes::org-id for usage.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hactypes.el
(defact link-to-org-id-marker (marker)
"Display the Org entry, if any, at MARKER.
See doc of `ibtypes::org-id' for usage."
(unless (markerp marker)
(error "(link-to-org-id-marker): Argument must be a marker, not %s" marker))
(org-mark-ring-push)
(hact 'link-to-buffer-tmp (marker-buffer marker) marker)
(move-marker marker nil)
(when (featurep 'org-fold) ;; newer Org versions
(org-fold-show-context)))