@ -1050,12 +1050,24 @@ the visible part of the current buffer following point."
( isearch-done ) ) ) )
;;;###autoload
( defun avy-goto-word-0 ( arg )
( defun avy-goto-word-0 ( arg &optional beg end )
" Jump to a word start.
The window scope is determined by ` avy-all-windows ' ( ARG negates it ) . "
( interactive " P " )
( avy-with avy-goto-word-0
( avy--generic-jump avy-goto-word-0-regexp arg avy-style ) ) )
( avy--generic-jump avy-goto-word-0-regexp arg avy-style beg end ) ) )
( defun avy-goto-word-0-above ( arg )
" Jump to a word start between window start and point. "
( interactive " P " )
( avy-with avy-goto-word-0
( avy-goto-word-0 arg ( window-start ) ( point ) ) ) )
( defun avy-goto-word-0-below ( arg )
" Jump to a word start between point and window end. "
( interactive " P " )
( avy-with avy-goto-word-0
( avy-goto-word-0 arg ( point ) ( window-end ( selected-window ) t ) ) ) )
;;;###autoload
( defun avy-goto-word-1 ( char &optional arg beg end symbol )