Variable: type-break-demo-functions

type-break-demo-functions is a customizable variable defined in type-break.el.gz.

Value

(type-break-demo-boring
 type-break-demo-life
 type-break-demo-hanoi)

Documentation

List of functions to consider running as demos during typing breaks.

When a typing break begins, one of these functions is selected randomly to have Emacs do something interesting.

Any function in this list should start a demo which ceases as soon as a key is pressed.

Source Code

;; Defined in /usr/src/emacs/lisp/type-break.el.gz
(defcustom type-break-demo-functions
  '(type-break-demo-boring type-break-demo-life type-break-demo-hanoi)
  "List of functions to consider running as demos during typing breaks.
When a typing break begins, one of these functions is selected randomly
to have Emacs do something interesting.

Any function in this list should start a demo which ceases as soon as a
key is pressed."
  :type '(repeat function)
  :group 'type-break)