Function: hywiki-word-read-new

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

Signature

(hywiki-word-read-new &optional PROMPT INITIAL)

Documentation

Prompt with completion for and return an existing or new 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-new (&optional prompt initial)
  "Prompt with completion for and return an existing or new 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 nil initial nil (hywiki-word-at-point))))