Function: evil-split-next-buffer
evil-split-next-buffer is an interactive and byte-compiled function
defined in evil-commands.el.
Signature
(evil-split-next-buffer &optional COUNT)
Documentation
Split the window and go to the COUNT-th next buffer in the buffer list.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-split-next-buffer (&optional count)
"Split the window and go to the COUNT-th next buffer in the buffer list."
:repeat nil
(interactive "p")
(evil-window-split)
(next-buffer count))