Function: avy-goto-word-0-below
avy-goto-word-0-below is an interactive and byte-compiled function
defined in avy.el.
Signature
(avy-goto-word-0-below ARG)
Documentation
Jump to a word start between point and window end.
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
(defun avy-goto-word-0-below (arg)
"Jump to a word start between point and window end.
The window scope is determined by `avy-all-windows'.
When ARG is non-nil, do the opposite of `avy-all-windows'."
(interactive "P")
(avy-with avy-goto-word-0
(avy-goto-word-0 arg (point) (window-end (selected-window) t))))