Function: avy-goto-whitespace-end-above

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

Signature

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

Documentation

Jump to the end of a whitespace sequence 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-whitespace-end-above (arg)
  "Jump to the end of a whitespace sequence 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-whitespace-end
    (avy-goto-whitespace-end arg (window-start) (point))))