Function: avy-goto-char

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

Signature

(avy-goto-char CHAR &optional ARG)

Documentation

Jump to the currently visible CHAR.

The window scope is determined by avy-all-windows (ARG negates it).

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
;;* Commands
;;;###autoload
(defun avy-goto-char (char &optional arg)
  "Jump to the currently visible CHAR.
The window scope is determined by `avy-all-windows' (ARG negates it)."
  (interactive (list (read-char "char: " t)
                     current-prefix-arg))
  (avy-with avy-goto-char
    (avy-jump
     (if (= 13 char)
         "\n"
       (regexp-quote (string char)))
     :window-flip arg)))