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 should be on the HyWikiWord itself. 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-20260414.325/hywiki.el
(defun hywiki-word-at-point ()
"Return singular HyWikiWord at point with its suffix stripped or nil.
Point should be on the HyWikiWord itself. 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))))