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 displaying documentation.
If user input arrives before this interval of time has elapsed after the last input event, no documentation will be displayed.
If this variable is set to 0, display the documentation without any delay.
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 displaying documentation.
If user input arrives before this interval of time has elapsed after the
last input event, no documentation will be displayed.
If this variable is set to 0, display the documentation without any delay."
:type 'number)