Function: avy-goto-char-timer
avy-goto-char-timer is an autoloaded, interactive and byte-compiled
function defined in avy.el.
Signature
(avy-goto-char-timer &optional ARG)
Documentation
Read one or many consecutive chars and jump to the first one.
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
;;;###autoload
(defun avy-goto-char-timer (&optional arg)
"Read one or many consecutive chars and jump to the first one.
The window scope is determined by `avy-all-windows' (ARG negates it)."
(interactive "P")
(let ((avy-all-windows (if arg
(not avy-all-windows)
avy-all-windows)))
(avy-with avy-goto-char-timer
(setq avy--old-cands (avy--read-candidates))
(avy-process avy--old-cands))))