Function: evil-next-buffer
evil-next-buffer is an interactive and byte-compiled function defined
in evil-commands.el.
Signature
(evil-next-buffer &optional COUNT)
Documentation
Go to the COUNTth 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-next-buffer (&optional count)
"Go to the COUNTth next buffer in the buffer list."
:repeat nil
(interactive "p")
(next-buffer count))