Variable: which-key-highlighted-command-list
which-key-highlighted-command-list is a customizable variable defined
in which-key.el.gz.
Value
nil
Documentation
Rules used to highlight certain commands.
If the element is a string, assume it is a regexp pattern for
matching command names and use
which-key-highlighted-command-face for any matching names. If
the element is a cons cell, it should take the form (regexp .
face to apply).
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-highlighted-command-list '()
"Rules used to highlight certain commands.
If the element is a string, assume it is a regexp pattern for
matching command names and use
`which-key-highlighted-command-face' for any matching names. If
the element is a cons cell, it should take the form (regexp .
face to apply)."
:type '(repeat (choice string (cons regexp face)))
:package-version '(which-key . "1.0") :version "30.1")