Function: hywiki-word-read

hywiki-word-read is a byte-compiled function defined in hywiki.el.

Signature

(hywiki-word-read &optional PROMPT INITIAL)

Documentation

Prompt with completion for and return an existing HyWikiWord.

If point is on one, press RET immediately to use that one.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-word-read (&optional prompt initial)
  "Prompt with completion for and return an existing HyWikiWord.
If point is on one, press RET immediately to use that one."
  (let ((completion-ignore-case t))
    (completing-read (if (stringp prompt) prompt "HyWiki Word: ")
		     (hywiki-get-referent-hasht)
		     nil t initial nil (hywiki-word-at-point))))