Function: forward-evil-quote

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

Signature

(forward-evil-quote &optional COUNT)

Documentation

Move forward COUNT strings.

The quotation character is specified by the global variable evil-forward-quote-char. This character is passed to evil-forward-quote.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun forward-evil-quote (&optional count)
  "Move forward COUNT strings.
The quotation character is specified by the global variable
`evil-forward-quote-char'. This character is passed to
`evil-forward-quote'."
  (evil-forward-quote evil-forward-quote-char count))