Function: actypes::org-link
actypes::org-link is an interactive and byte-compiled function defined
in hsys-org.el.
Signature
(actypes::org-link &optional LINK)
Documentation
Follow an optional Org mode LINK to its target.
If LINK is nil, follow any link at point. Otherwise, trigger an error.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
(defact org-link (&optional link)
"Follow an optional Org mode LINK to its target.
If LINK is nil, follow any link at point. Otherwise, trigger an error."
(interactive "sOrg link: ")
(if (stringp link)
;; open as if in Org mode even if not
(org-link-open-from-string link)
;; autoloaded, open link at point whether in or out of Org mode
(if (derived-mode-p 'org-mode)
(org-open-at-point)
(org-open-at-point-global))))