Function: evil-prev-buffer

evil-prev-buffer is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-prev-buffer &optional COUNT)

Documentation

Go to the COUNTth 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-prev-buffer (&optional count)
  "Go to the COUNTth prev buffer in the buffer list."
  :repeat nil
  (interactive "p")
  (previous-buffer count))