Function: avy-goto-subword-1

avy-goto-subword-1 is an autoloaded, interactive and byte-compiled function defined in avy.el.

Signature

(avy-goto-subword-1 CHAR &optional ARG)

Documentation

Jump to the currently visible CHAR at a subword start.

The window scope is determined by avy-all-windows (ARG negates it). The case of CHAR is ignored.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
;;;###autoload
(defun avy-goto-subword-1 (char &optional arg)
  "Jump to the currently visible CHAR at a subword start.
The window scope is determined by `avy-all-windows' (ARG negates it).
The case of CHAR is ignored."
  (interactive (list (read-char "char: " t)
                     current-prefix-arg))
  (avy-with avy-goto-subword-1
    (let ((char (downcase char)))
      (avy-goto-subword-0
       arg (lambda ()
             (and (char-after)
                  (eq (downcase (char-after)) char)))))))