Function: evil-goto-last-change

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

Signature

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

Documentation

Like goto-last-change 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 (count)
  "Like `goto-last-change' but takes a COUNT rather than a span."
  (setq this-command 'goto-last-change)
  (dotimes (_ (or count 1))
    (goto-last-change nil)))