Variable: tab-line-switch-repeat-map

tab-line-switch-repeat-map is a variable defined in tab-line.el.gz.

Value

<left>   tab-line-switch-to-prev-tab
<right>  tab-line-switch-to-next-tab

Documentation

Keymap to repeat tab/buffer cycling. Used in repeat-mode(var)/repeat-mode(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/tab-line.el.gz
(defvar-keymap tab-line-switch-repeat-map
  :doc "Keymap to repeat tab/buffer cycling.  Used in `repeat-mode'."
  :repeat t
  "<left>"  #'tab-line-switch-to-prev-tab
  "<right>" #'tab-line-switch-to-next-tab)