Variable: which-key-idle-secondary-delay

which-key-idle-secondary-delay is a customizable variable defined in which-key.el.gz.

Value

nil

Documentation

Seconds to wait for which-key to pop up after initial display.

This makes it possible to shorten the delay for subsequent popups in the same key sequence. The default is for this value to be nil, which disables this behavior.

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-secondary-delay nil
  "Seconds to wait for which-key to pop up after initial display.
This makes it possible to shorten the delay for subsequent popups
in the same key sequence.  The default is for this value to be
nil, which disables this behavior."
  :type '(choice float (const :tag "Disabled" nil))
  :package-version '(which-key "1.0") :version "30.1")