Function: avy-goto-symbol-1

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

Signature

(avy-goto-symbol-1 CHAR &optional ARG)

Documentation

Jump to the currently visible CHAR at a symbol start.

The window scope is determined by avy-all-windows. When ARG is non-nil, do the opposite of avy-all-windows.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
;;;###autoload
(defun avy-goto-symbol-1 (char &optional arg)
  "Jump to the currently visible CHAR at a symbol start.
The window scope is determined by `avy-all-windows'.
When ARG is non-nil, do the opposite of `avy-all-windows'."
  (interactive (list (read-char "char: " t)
                     current-prefix-arg))
  (avy-with avy-goto-symbol-1
    (avy-goto-word-1 char arg nil nil t)))