Function: forward-evil-space

forward-evil-space is a byte-compiled function defined in evil-common.el.

Signature

(forward-evil-space &optional COUNT)

Documentation

Move forward COUNT whitespace sequences [[:space:]]+.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun forward-evil-space (&optional count)
  "Move forward COUNT whitespace sequences [[:space:]]+."
  (evil-forward-chars "[:space:]" count))