Function: evil-ex-yank

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

Signature

(evil-ex-yank BEG END &optional TYPE REGISTER COUNT YANK-HANDLER)

Documentation

The Ex yank command.

[BEG,END]yank [REGISTER] [COUNT]

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-operator evil-ex-yank (beg end type register count yank-handler)
  "The Ex yank command.
\[BEG,END]yank [REGISTER] [COUNT]"
  :restore-point t
  (interactive "<R><xc/><y>")
  (evil-ex-delete-or-yank nil beg end type register count yank-handler))