Variable: which-key-special-keys

which-key-special-keys is a customizable variable defined in which-key.el.gz.

Value

nil

Documentation

Keys which will be truncated to their first character.

They also have which-key-special-key-face applied to them. This is disabled by default. Format is a list of strings, an example configuration is:

(setopt which-key-special-keys '("SPC" "TAB" "RET" "ESC" "DEL"))

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-special-keys '()
  "Keys which will be truncated to their first character.
They also have `which-key-special-key-face' applied to them.  This is
disabled by default.  Format is a list of strings, an example
configuration is:

\(setopt which-key-special-keys \\='(\"SPC\" \"TAB\" \"RET\" \"ESC\" \"DEL\")\)"
  :type '(repeat string)
  :package-version '(which-key . "1.0") :version "30.1")