Function: timer-list-mode
timer-list-mode is an interactive and byte-compiled function defined
in timer-list.el.gz.
Signature
(timer-list-mode)
Documentation
Mode for listing and controlling timers.
In addition to any hooks its parent mode tabulated-list-mode might
have run, this mode runs the hook timer-list-mode-hook, as the final
or penultimate step during initialization.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/timer-list.el.gz
(define-derived-mode timer-list-mode tabulated-list-mode "Timer-List"
"Mode for listing and controlling timers."
(buffer-disable-undo)
(setq-local revert-buffer-function #'list-timers)
(setq tabulated-list-format
'[("Idle" 6 timer-list--idle-predicate)
("Next" 12 timer-list--next-predicate :right-align t :pad-right 1)
("Repeat" 12 timer-list--repeat-predicate :right-align t :pad-right 1)
("Function" 10 timer-list--function-predicate)]))