Function: avy-goto-whitespace-end-below

avy-goto-whitespace-end-below is an interactive and byte-compiled function defined in avy.el.

Signature

(avy-goto-whitespace-end-below ARG)

Documentation

Jump to the end of a whitespace sequence between window start and 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
(defun avy-goto-whitespace-end-below (arg)
  "Jump to the end of a whitespace sequence between window start and point.
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-whitespace-end
    (avy-goto-whitespace-end arg (point) (window-end (selected-window) t))))