Function: avy-isearch

avy-isearch is an autoloaded, interactive and byte-compiled function defined in avy.el.

Signature

(avy-isearch)

Documentation

Jump to one of the current isearch candidates.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
;;;###autoload
(defun avy-isearch ()
  "Jump to one of the current isearch candidates."
  (interactive)
  (avy-with avy-isearch
    (let ((avy-background nil)
          (avy-case-fold-search case-fold-search))
      (prog1
          (avy-process
           (avy--regex-candidates (if isearch-regexp
                                      isearch-string
                                    (regexp-quote isearch-string))))
        (isearch-done)))))