Function: hyrolo-grep-or-fgrep

hyrolo-grep-or-fgrep is an autoloaded, interactive and byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-grep-or-fgrep &optional ARG)

Documentation

Grep over hyrolo-file-list and display the results as rolo entries.

With optional prefix ARG, do an fgrep string match instead of a regexp match.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
;;;###autoload
(defun hyrolo-grep-or-fgrep (&optional arg)
  "Grep over `hyrolo-file-list' and display the results as rolo entries.
With optional prefix ARG, do an fgrep string match instead of a regexp match."
  (interactive "P")
  (call-interactively (if arg 'hyrolo-fgrep 'hyrolo-grep)))