Function: evil-insert-newline-below
evil-insert-newline-below is a byte-compiled function defined in
evil-common.el.
Signature
(evil-insert-newline-below)
Documentation
Insert a new line below point and place point in that line with regard to indentation.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-insert-newline-below ()
"Insert a new line below point and place point in that line
with regard to indentation."
(evil-narrow-to-field
(evil-move-end-of-line)
(insert (if use-hard-newlines hard-newline "\n"))
(back-to-indentation)))