Variable: which-key-show-prefix

which-key-show-prefix is a customizable variable defined in which-key.el.gz.

Value

echo

Documentation

Whether to and where to display the current prefix sequence.

Possible choices are echo for echo area (the default), left, top and nil. nil turns the feature off.

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-show-prefix 'echo
  "Whether to and where to display the current prefix sequence.
Possible choices are echo for echo area (the default), left, top
and nil.  nil turns the feature off."
  :type '(radio (const :tag "Left of the keys" left)
                (const :tag "In the first line" top)
                (const :tag "In the last line" bottom)
                (const :tag "In the echo area" echo)
                (const :tag "In the mode-line" mode-line)
                (const :tag "Hide" nil))
  :package-version '(which-key . "1.0") :version "30.1")