Function: avy-next

avy-next is an interactive and byte-compiled function defined in avy.el.

Signature

(avy-next)

Documentation

Go to the next candidate of the last avy-read.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defun avy-next ()
  "Go to the next candidate of the last `avy-read'."
  (interactive)
  (avy--last-candidates-cycle
   (lambda (pos lst)
     (when (< pos (1- (length lst)))
       (let ((candidate (nth (1+ pos) lst)))
         (goto-char (if (listp (car candidate)) (caar candidate) (car candidate))))))))