Variable: which-key-extra-keymaps
which-key-extra-keymaps is a customizable variable defined in
which-key.el.gz.
Value
(key-translation-map)
Documentation
List of extra keymaps to show entries from.
The default is to check key-translation-map, which contains the
'C-x 8' bindings for entering common characters.
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-extra-keymaps '(key-translation-map)
"List of extra keymaps to show entries from.
The default is to check `key-translation-map', which contains the
\\='C-x 8' bindings for entering common characters."
:type '(choice (list :tag "Translation map" (const key-translation-map))
(const :tag "None" nil)
(repeat :tag "Custom" symbol))
:package-version '(which-key . "1.0") :version "30.1")