Function: evil-copy-from-below

evil-copy-from-below is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-copy-from-below ARG)

Documentation

Copy characters from following non-blank line.

The copied text is inserted before point. ARG is the number of lines to move forward. See also C-y (evil-copy-from-above).

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(defun evil-copy-from-below (arg)
  "Copy characters from following non-blank line.
The copied text is inserted before point.
ARG is the number of lines to move forward.
See also \\<evil-insert-state-map>\\[evil-copy-from-above]."
  (interactive
   (cond
    ((and (null current-prefix-arg)
          (eq last-command #'evil-copy-from-below))
     (setq current-prefix-arg last-prefix-arg)
     (list (prefix-numeric-value current-prefix-arg)))
    (t
     (list (prefix-numeric-value current-prefix-arg)))))
  (evil--self-insert-string (evil-copy-chars-from-line arg 1)))