Variable: tab-bar-map

tab-bar-map is a variable defined in tab-bar.el.gz.

Value

<down-mouse-1>       tab-bar-mouse-down-1
<down-mouse-2>       tab-bar-mouse-close-tab
<down-mouse-3>       tab-bar-mouse-context-menu
<drag-mouse-1>       tab-bar-mouse-move-tab
<mouse-1>            tab-bar-mouse-1
<mouse-2>            ignore
<mouse-4>            tab-previous
<mouse-5>            tab-next
<touchscreen-begin>  tab-bar-touchscreen-begin
<wheel-down>         tab-next
<wheel-left>         tab-previous
<wheel-right>        tab-next
<wheel-up>           tab-previous
S-<mouse-4>          tab-bar-move-tab-backward
S-<mouse-5>          tab-bar-move-tab
S-<wheel-down>       tab-bar-move-tab
S-<wheel-left>       tab-bar-move-tab-backward
S-<wheel-right>      tab-bar-move-tab
S-<wheel-up>         tab-bar-move-tab-backward

Documentation

Keymap for the commands used on the tab bar.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defvar-keymap tab-bar-map
  :doc "Keymap for the commands used on the tab bar."
  "<down-mouse-1>"  #'tab-bar-mouse-down-1
  "<drag-mouse-1>"  #'tab-bar-mouse-move-tab
  "<mouse-1>"       #'tab-bar-mouse-1
  "<down-mouse-2>"  #'tab-bar-mouse-close-tab
  "<mouse-2>"       #'ignore
  "<down-mouse-3>"  #'tab-bar-mouse-context-menu

  "<mouse-4>"       #'tab-previous
  "<mouse-5>"       #'tab-next
  "<wheel-up>"      #'tab-previous
  "<wheel-down>"    #'tab-next
  "<wheel-left>"    #'tab-previous
  "<wheel-right>"   #'tab-next

  "S-<mouse-4>"     #'tab-bar-move-tab-backward
  "S-<mouse-5>"     #'tab-bar-move-tab
  "S-<wheel-up>"    #'tab-bar-move-tab-backward
  "S-<wheel-down>"  #'tab-bar-move-tab
  "S-<wheel-left>"  #'tab-bar-move-tab-backward
  "S-<wheel-right>" #'tab-bar-move-tab
  "<touchscreen-begin>" #'tab-bar-touchscreen-begin)