Function: avy-goto-symbol-1-above

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

Signature

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

Documentation

Jump to the currently visible CHAR at a symbol start.

This is a scoped version of avy-goto-symbol-1, where the scope is the visible part of the current buffer up to point. 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-above (char &optional arg)
  "Jump to the currently visible CHAR at a symbol start.
This is a scoped version of `avy-goto-symbol-1', where the scope is
the visible part of the current buffer up to point.
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-above
    (avy-goto-word-1 char arg (window-start) (point) t)))