Variable: eldoc-idle-delay

eldoc-idle-delay is a customizable variable defined in eldoc.el.gz.

Value

0.5

Documentation

Number of seconds of idle time to wait before printing.

If user input arrives before this interval of time has elapsed after the last input, no documentation will be printed.

If this variable is set to 0, no idle time is required.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/eldoc.el.gz
(defcustom eldoc-idle-delay 0.50
  "Number of seconds of idle time to wait before printing.
If user input arrives before this interval of time has elapsed after the
last input, no documentation will be printed.

If this variable is set to 0, no idle time is required."
  :type 'number)