Variable: mode-line-buffer-identification-keymap

mode-line-buffer-identification-keymap is a variable defined in bindings.el.gz.

Value

<header-line> <down-mouse-1>  ignore
<header-line> <down-mouse-3>  ignore
<header-line> <mouse-1>       mode-line-previous-buffer
<header-line> <mouse-3>       mode-line-next-buffer
<mode-line> <mouse-1>         mode-line-previous-buffer
<mode-line> <mouse-3>         mode-line-next-buffer

Documentation

Keymap for what is displayed by mode-line-buffer-identification.

Source Code

;; Defined in /usr/src/emacs/lisp/bindings.el.gz
(defvar-keymap mode-line-buffer-identification-keymap
  :doc "Keymap for what is displayed by `mode-line-buffer-identification'."
  ;; Add menu of buffer operations to the buffer identification part
  ;; of the mode line.or header line.
  ;; Bind down- events so that the global keymap won't ``shine
  ;; through''.
  "<mode-line> <mouse-1>"        #'mode-line-previous-buffer
  "<header-line> <down-mouse-1>" #'ignore
  "<header-line> <mouse-1>"      #'mode-line-previous-buffer
  "<mode-line> <mouse-3>"        #'mode-line-next-buffer
  "<header-line> <down-mouse-3>" #'ignore
  "<header-line> <mouse-3>"      #'mode-line-next-buffer)