Variable: timer-list-mode-map

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

Value

c  timer-list-cancel

Documentation

Keymap for timer-list-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/timer-list.el.gz
;; This command can be destructive if they don't know what they are
;; doing.  Kids, don't try this at home!
;;;###autoload (put 'list-timers 'disabled "Beware: manually canceling timers can ruin your Emacs session.")

(defvar-keymap timer-list-mode-map
  "c" #'timer-list-cancel
  :menu
  '("Timers"
    ["Cancel" timer-list-cancel t]
    ["Quit" quit-window]))