Function: evil-tab-next

evil-tab-next is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-tab-next ARG)

Documentation

Switch to the next tab.

If ARG is non-nil, parse ARG as an index and go to the tab at that index.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
;;; Tab commands

(evil-define-command evil-tab-next (arg)
  "Switch to the next tab.
If ARG is non-nil, parse ARG as an index and go to the tab at that
index."
  :repeat nil
  (interactive "<c>")
  (if arg
      (tab-bar-select-tab arg)
    (tab-bar-switch-to-next-tab)))