Function: evil-open-below
evil-open-below is an interactive and byte-compiled function defined
in evil-commands.el.
Signature
(evil-open-below COUNT)
Documentation
Insert a new line below point and switch to Insert state.
The insertion will be repeated COUNT times.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-open-below (count)
"Insert a new line below point and switch to Insert state.
The insertion will be repeated COUNT times."
:suppress-operator t
(interactive "p")
(unless (eq evil-want-fine-undo t)
(evil-start-undo-step))
(push (point) buffer-undo-list)
(evil-insert-newline-below)
(setq evil-insert-count count
evil-insert-lines t
evil-insert-vcount nil)
(unwind-protect
(when evil-auto-indent
(indent-according-to-mode))
(evil-insert-state 1)))