Function: hywiki-word-grep

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

Signature

(hywiki-word-grep WIKIWORD)

Documentation

Grep for occurrences of WIKIWORD with consult-grep or normal-grep'.

Search across hywiki-directory.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-word-grep (wikiword)
  "Grep for occurrences of WIKIWORD with `consult-grep' or normal-grep'.
Search across `hywiki-directory'."
  (if (hsys-consult-active-p) ;; allow for autoloading
      (hywiki-consult-backlink wikiword)
    (grep (string-join (list grep-command (format "'%s'" wikiword)
			     (concat (file-name-as-directory hywiki-directory)
				     "*" hywiki-file-suffix))
		       " "))))