Function: hywiki-word-activate
hywiki-word-activate is an interactive and byte-compiled function
defined in hywiki.el.
Signature
(hywiki-word-activate &optional ARG)
Documentation
Display HyWiki referent for wikiword at point.
If referent is a non-existent HyWiki page, create it. When this is the first HyWiki page, prompt before creating in case this is not what was intended.
If found, return the referent.
If not on a HyWikiWord and optional prefix ARG is null, emulate an Action Key press; with a prefix ARG, emulate an Assist Key press.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-word-activate (&optional arg)
"Display HyWiki referent for wikiword at point.
If referent is a non-existent HyWiki page, create it. When this
is the first HyWiki page, prompt before creating in case this is
not what was intended.
If found, return the referent.
If not on a HyWikiWord and optional prefix ARG is null, emulate an
Action Key press; with a prefix ARG, emulate an Assist Key press."
(interactive "P")
(let ((word (hywiki-word-at)))
(if word
(hywiki-find-referent word)
(hkey-either arg))))