Function: hyrolo-isearch-regexp

hyrolo-isearch-regexp is an interactive and byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-isearch-regexp &optional ARG)

Documentation

Interactively search forward for the next occurrence of current match string.

Then add characters to further narrow the search. With optional prefix ARG non-nil, search for the current match regular expression rather than string.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-isearch-regexp (&optional arg)
  "Interactively search forward for the next occurrence of current match string.
Then add characters to further narrow the search.  With optional prefix ARG
non-nil, search for the current match regular expression rather than string."
  (interactive "P")
  (if arg
      (hyrolo-isearch-for-regexp hyrolo-match-regexp t)
    (hyrolo-isearch)))