Function: evil-insert-resume

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

Signature

(evil-insert-resume COUNT)

Documentation

Switch to Insert state at previous insertion point.

The insertion will be repeated COUNT times. If called from visual state, only place point at the previous insertion position but do not switch to insert state.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-insert-resume (count)
  "Switch to Insert state at previous insertion point.
The insertion will be repeated COUNT times. If called from visual
state, only place point at the previous insertion position but do not
switch to insert state."
  :keep-visual t
  :type exclusive
  :jump t
  (interactive "p")
  (evil-goto-mark ?^ t)
  (unless (evil-visual-state-p)
    (evil-insert count)))