Previous: , Up: Timers   [Index]


I.2.5.2 Idle Timers

An idle timer is a timer that runs when Emacs is idle for a certain length of time, and work just like ordinary timers.

The Meaning of Idle

Emacs becomes idle when it starts waiting for user input, and it remains idle until the user provides some input. If a timer is set for five seconds of idleness, it runs approximately five seconds after Emacs first becomes idle. Even if repeat is non-nil, this timer will not run again as long as Emacs remains idle, because the duration of idleness will continue to increase and will not go down to five seconds again.

Emacs can do various things while idle: garbage collect, autosave or handle data from a subprocess. But these interludes during idleness do not interfere with idle timers, because they do not reset the clock of idleness to zero. An idle timer set for 600 seconds will run when ten minutes have elapsed since the last user command was finished, even if subprocess output has been accepted thousands of times within those ten minutes, and even if there have been garbage collections and autosaves.

When the user supplies input, Emacs becomes non-idle while executing the input. Then it becomes idle again, and all the idle timers that are set up to repeat will subsequently run another time, one by one.

Do not write an idle timer function containing a loop which does a certain amount of processing each time around, and exits when (input-pending-p) is non-nil. This approach seems very natural but has two problems:

Similarly, do not write an idle timer function that sets up another idle timer (including the same idle timer) with secs argument less than or equal to the current idleness time. Such a timer will run almost immediately, and continue running again and again, instead of waiting for the next time Emacs becomes idle. The correct approach is to reschedule with an appropriate increment of the current value of the idleness time, as described below.

Idle Timer Commands and Functions

Command run-with-idle-timer

Function: run-with-idle-timer SECS REPEAT FUNCTION &rest ARGS

Set up a timer which runs the next time Emacs is idle for secs seconds.

SECS

The value of secs may be a number or a value of the type returned by current-idle-time.

REPEAT

If ‘REPEAT’ is ‘nil’, the timer runs just once, the first time Emacs remains idle for a long enough time. More often REPEAT is non-‘nil’, which means to run the timer each time Emacs remains idle for SECS seconds.

Return Value

returns a timer value which you can use in calling cancel-timer.

Function current-idle-time

Function: current-idle-time

If Emacs is idle, this function returns the length of time Emacs has been idle, using the same format as current-time.

When Emacs is not idle, current-idle-time returns ‘nil’. This is a convenient way to test whether Emacs is idle.

The main use of current-idle-time is when an idle timer function wants to “take a break” for a while. It can set up another idle timer to call the same function again, after a few seconds more idleness.

(defvar my-resume-timer nil
  "Timer for `my-timer-function' to reschedule itself, or nil.")

(defun my-timer-function ()
  ;; If the user types a command while my-resume-timer
  ;; is active, the next time this function is called from
  ;; its main idle timer, deactivate my-resume-timer.
  (when my-resume-timer
    (cancel-timer my-resume-timer))
  ...do the work for a while...
  (when taking-a-break
    (setq my-resume-timer
          (run-with-idle-timer
            ;; Compute an idle time break-length
            ;; more than the current value.
            (time-add (current-idle-time) break-length)
            nil
            'my-timer-function))))

Previous: Timer Functions and Commands, Up: Timers   [Index]