Function: avy-goto-char-in-line

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

Signature

(avy-goto-char-in-line CHAR)

Documentation

Jump to the currently visible CHAR in the current line.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
;;;###autoload
(defun avy-goto-char-in-line (char)
  "Jump to the currently visible CHAR in the current line."
  (interactive (list (read-char "char: " t)))
  (avy-with avy-goto-char
    (avy-jump
     (regexp-quote (string char))
     :beg (line-beginning-position)
     :end (line-end-position))))