Variable: thread-list-mode-map

thread-list-mode-map is a variable defined in thread.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
b               thread-list-pop-to-backtrace
g               revert-buffer
h               describe-mode
n               next-line
p               previous-line
q               quit-window
s e             thread-list-send-error-signal
s q             thread-list-send-quit-signal
{               tabulated-list-narrow-current-column
}               tabulated-list-widen-current-column

Documentation

Local keymap for thread-list-mode buffers.

Source Code

;; Defined in /usr/src/emacs/lisp/thread.el.gz
(defvar thread-list-mode-map
  (let ((map (make-sparse-keymap)))
    (set-keymap-parent map tabulated-list-mode-map)
    (define-key map "b" #'thread-list-pop-to-backtrace)
    (define-key map "s" nil)
    (define-key map "sq" #'thread-list-send-quit-signal)
    (define-key map "se" #'thread-list-send-error-signal)
    (easy-menu-define nil map ""
      '("Threads"
        ["Show backtrace" thread-list-pop-to-backtrace t]
	["Send Quit Signal" thread-list-send-quit-signal t]
        ["Send Error Signal" thread-list-send-error-signal t]))
    map)
  "Local keymap for `thread-list-mode' buffers.")