Function: avy--generic-jump

avy--generic-jump is a byte-compiled function defined in avy.el.

This function is obsolete since 0.4.0; use avy-jump instead.

Signature

(avy--generic-jump REGEX WINDOW-FLIP &optional BEG END)

Documentation

Jump to REGEX.

The window scope is determined by avy-all-windows. When WINDOW-FLIP is non-nil, do the opposite of avy-all-windows. BEG and END narrow the scope where candidates are searched.

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defun avy--generic-jump (regex window-flip &optional beg end)
  "Jump to REGEX.
The window scope is determined by `avy-all-windows'.
When WINDOW-FLIP is non-nil, do the opposite of `avy-all-windows'.
BEG and END narrow the scope where candidates are searched."
  (declare (obsolete avy-jump "0.4.0"))
  (let ((avy-all-windows
         (if window-flip
             (not avy-all-windows)
           avy-all-windows)))
    (avy-process
     (avy--regex-candidates regex beg end))))