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-keymap tabulated-list-mode-map
:doc "Local keymap for `tabulated-list-mode' buffers."
:parent (make-composed-keymap button-buffer-map
special-mode-map)
"n" #'next-line
"p" #'previous-line
"M-<left>" #'tabulated-list-previous-column
"M-<right>" #'tabulated-list-next-column
"S" #'tabulated-list-sort
"}" #'tabulated-list-widen-current-column
"{" #'tabulated-list-narrow-current-column
"<follow-link>" 'mouse-face
"<mouse-2>" #'mouse-select-window)