Function: evil-goto-last-change-reverse

evil-goto-last-change-reverse is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-goto-last-change-reverse &optional COUNT)

Documentation

Like goto-last-change-reverse but takes a COUNT rather than a span.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-goto-last-change-reverse (count)
  "Like `goto-last-change-reverse' but takes a COUNT rather than a span."
  (setq this-command 'goto-last-change-reverse)
  (dotimes (_ (or count 1))
    (goto-last-change-reverse nil)))