Function: evil-paste-pop-next

evil-paste-pop-next is an interactive and byte-compiled function defined in evil-common.el.

Signature

(evil-paste-pop-next COUNT)

Documentation

Same as evil-paste-pop but with negative argument.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-paste-pop-next (count)
  "Same as `evil-paste-pop' but with negative argument."
  (interactive "p")
  (evil-paste-pop (- count)))