Function: avy-prev

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

Signature

(avy-prev)

Documentation

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

Key Bindings

Source Code

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