Function: evil-redo

evil-redo is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-redo COUNT)

Documentation

Undo COUNT changes in buffer using evil-redo-function.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-redo (count)
  "Undo COUNT changes in buffer using `evil-redo-function'."
  :repeat abort
  (interactive "*p")
  (evil--check-undo-system)
  (funcall evil-redo-function count))