Function: hywiki-word-consult-grep

hywiki-word-consult-grep is an autoloaded, interactive and byte-compiled function defined in hywiki.el.

Signature

(hywiki-word-consult-grep WORD)

Documentation

Use hywiki-consult-grep to show occurrences of a prompted for HyWikiWord.

Default to any HyWikiWord at point.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
;;;###autoload
(defun hywiki-word-consult-grep (word)
  "Use `hywiki-consult-grep' to show occurrences of a prompted for HyWikiWord.
Default to any HyWikiWord at point."
  (interactive (list (hywiki-word-read)))
  (if (and (stringp word) (not (string-empty-p word)))
      (hywiki-consult-grep (concat "\\b" (regexp-quote word) "\\b"))
    (user-error "(hywiki-word-consult-grep): Invalid HyWikiWord: '%s'; must be capitalized, all alpha" word)))