Function: hywiki-word-at-point
hywiki-word-at-point is a byte-compiled function defined in hywiki.el.
Signature
(hywiki-word-at-point)
Documentation
Return singular HyWikiWord at point with its suffix stripped or nil.
Point may be on or immediately after the HyWikiWord itself. hywiki-mode(var)/hywiki-mode(fun)
must be enabled or this will return nil. Suffix is anything after the #
symbol.
This does not test whether a referent exists for the HyWikiWord; call
hywiki-referent-exists-p without an argument for that.
A call to hywiki-active-in-current-buffer-p at point must return non-nil
or this will return nil.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260822.1645/hywiki.el
(defun hywiki-word-at-point ()
"Return singular HyWikiWord at point with its suffix stripped or nil.
Point may be on or immediately after the HyWikiWord itself. `hywiki-mode'
must be enabled or this will return nil. Suffix is anything after the #
symbol.
This does not test whether a referent exists for the HyWikiWord; call
`hywiki-referent-exists-p' without an argument for that.
A call to `hywiki-active-in-current-buffer-p' at point must return non-nil
or this will return nil."
(hywiki-get-singular-wikiword (hywiki-word-strip-suffix (hywiki-word-at))))