Variable: timer-list-mode-abbrev-table

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

Value

#<obarray n=1>

Documentation

Abbrev table for timer-list-mode.

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)]))