Function: evil-split-buffer
evil-split-buffer is an interactive and byte-compiled function defined
in evil-commands.el.
Signature
(evil-split-buffer BUFFER)
Documentation
Split window and switch to another buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-split-buffer (buffer)
"Split window and switch to another buffer."
:repeat nil
(interactive "<b>")
(evil-window-split)
(evil-buffer buffer))