Function: evil-split-prev-buffer
evil-split-prev-buffer is an interactive and byte-compiled function
defined in evil-commands.el.
Signature
(evil-split-prev-buffer &optional COUNT)
Documentation
Split window and go to the COUNT-th prev 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-prev-buffer (&optional count)
"Split window and go to the COUNT-th prev buffer in the buffer list."
:repeat nil
(interactive "p")
(evil-window-split)
(previous-buffer count))