Function: avy-goto-whitespace-end
avy-goto-whitespace-end is an autoloaded, interactive and
byte-compiled function defined in avy.el.
Signature
(avy-goto-whitespace-end ARG &optional BEG END)
Documentation
Jump to the end of a whitespace sequence.
The window scope is determined by avy-all-windows.
When ARG is non-nil, do the opposite of avy-all-windows.
BEG and END narrow the scope where candidates are searched.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
;;;###autoload
(defun avy-goto-whitespace-end (arg &optional beg end)
"Jump to the end of a whitespace sequence.
The window scope is determined by `avy-all-windows'.
When ARG is non-nil, do the opposite of `avy-all-windows'.
BEG and END narrow the scope where candidates are searched."
(interactive "P")
(avy-with avy-goto-whitespace-end
(avy-jump "[ \t]+\\|\n[ \t]*"
:window-flip arg
:beg beg
:end end
:group (lambda () (cons (point) (1+ (point)))))))