Variable: which-key-echo-keystrokes

which-key-echo-keystrokes is a customizable variable defined in which-key.el.gz.

Value

0.25

Documentation

Value to use for echo-keystrokes.

This only applies if which-key-popup-type is minibuffer or which-key-show-prefix is echo. It needs to be less than which-key-idle-delay or else the keystroke echo will erase the which-key popup.

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-echo-keystrokes (if (and echo-keystrokes
                                              (> (+ echo-keystrokes 0.01)
                                                 which-key-idle-delay))
                                         (/ (float which-key-idle-delay) 4)
                                       echo-keystrokes)
  "Value to use for `echo-keystrokes'.
This only applies if `which-key-popup-type' is minibuffer or
`which-key-show-prefix' is echo.  It needs to be less than
`which-key-idle-delay' or else the keystroke echo will erase the
which-key popup."
  :type 'number
  :package-version '(which-key . "1.0") :version "30.1")