Function: avy-goto-char-2-above
avy-goto-char-2-above is an autoloaded, interactive and byte-compiled
function defined in avy.el.
Signature
(avy-goto-char-2-above CHAR1 CHAR2 &optional ARG)
Documentation
Jump to the currently visible CHAR1 followed by CHAR2.
This is a scoped version of avy-goto-char-2, 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-char-2-above (char1 char2 &optional arg)
"Jump to the currently visible CHAR1 followed by CHAR2.
This is a scoped version of `avy-goto-char-2', 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 1: " t)
(read-char "char 2: " t)
current-prefix-arg))
(avy-with avy-goto-char-2-above
(avy-goto-char-2
char1 char2 arg
(window-start) (point))))