Function: avy-goto-word-or-subword-1
avy-goto-word-or-subword-1 is an autoloaded, interactive and
byte-compiled function defined in avy.el.
Signature
(avy-goto-word-or-subword-1)
Documentation
Forward to avy-goto-subword-1 or avy-goto-word-1.
Which one depends on variable subword-mode(var)/subword-mode(fun).
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
;;;###autoload
(defun avy-goto-word-or-subword-1 ()
"Forward to `avy-goto-subword-1' or `avy-goto-word-1'.
Which one depends on variable `subword-mode'."
(interactive)
(if (bound-and-true-p subword-mode)
(call-interactively #'avy-goto-subword-1)
(call-interactively #'avy-goto-word-1)))