Variable: which-key-idle-delay
which-key-idle-delay is a customizable variable defined in
which-key.el.gz.
Value
1.0
Documentation
Delay (in seconds) for which-key buffer to popup.
This variable should be set before activating which-key-mode(var)/which-key-mode(fun).
A value of zero might lead to issues, so a non-zero value is
recommended
(see https://github.com/justbur/emacs-which-key/issues/134).
This variable was added, or its default value changed, in which-key version 1.0.
Source Code
;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defcustom which-key-idle-delay 1.0
"Delay (in seconds) for which-key buffer to popup.
This variable should be set before activating `which-key-mode'.
A value of zero might lead to issues, so a non-zero value is
recommended
(see https://github.com/justbur/emacs-which-key/issues/134)."
:type 'float
:package-version '(which-key . "1.0") :version "30.1")