Variable: tabulated-list-mode-map

tabulated-list-mode-map is a variable defined in tabulated-list.el.gz.

Value

Large value
-               negative-argument
0               digit-argument
1               digit-argument
2               digit-argument
3               digit-argument
4               digit-argument
5               digit-argument
6               digit-argument
7               digit-argument
8               digit-argument
9               digit-argument
<               beginning-of-buffer
<follow-link>   mouse-face
<keymap> C-M-i  backward-button
<keymap> TAB    forward-button
<mouse-2>       mouse-select-window
>               end-of-buffer
?               describe-mode
DEL             scroll-down-command
M-<left>        tabulated-list-previous-column
M-<right>       tabulated-list-next-column
S               tabulated-list-sort
S-SPC           scroll-down-command
SPC             scroll-up-command
SPC..~          undefined
g               revert-buffer
h               describe-mode
n               next-line
p               previous-line
q               quit-window
{               tabulated-list-narrow-current-column
}               tabulated-list-widen-current-column

Documentation

Local keymap for tabulated-list-mode buffers.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/tabulated-list.el.gz
(defvar tabulated-list-mode-map
  (let ((map (make-sparse-keymap)))
    (set-keymap-parent map (make-composed-keymap
                            button-buffer-map
                            special-mode-map))
    (define-key map "n" 'next-line)
    (define-key map "p" 'previous-line)
    (define-key map (kbd "M-<left>") 'tabulated-list-previous-column)
    (define-key map (kbd "M-<right>") 'tabulated-list-next-column)
    (define-key map "S" 'tabulated-list-sort)
    (define-key map "}" 'tabulated-list-widen-current-column)
    (define-key map "{" 'tabulated-list-narrow-current-column)
    (define-key map [follow-link] 'mouse-face)
    (define-key map [mouse-2] 'mouse-select-window)
    map)
  "Local keymap for `tabulated-list-mode' buffers.")