Variable: which-key-use-C-h-commands

which-key-use-C-h-commands is a customizable variable defined in which-key.el.gz.

Value

t

Documentation

Use \C-h (help-char) for paging if non-nil.

Normally help-char after a prefix calls describe-prefix-bindings. This changes that command to a which-key paging command when which-key-mode(var)/which-key-mode(fun) is active.

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-undo-key nil
;;   "Key (string) to use for undoing keypresses. Bound recursively
;; in each of the maps in `which-key-undo-keymaps'."
;;   :group 'which-key
;;   :type 'string)

;; (defcustom which-key-undo-keymaps '()
;;   "Keymaps in which to bind `which-key-undo-key'"
;;   :group 'which-key
;;   :type '(repeat symbol))

(defcustom which-key-use-C-h-commands t
  "Use \\`C-h' (`help-char') for paging if non-nil.
Normally `help-char' after a prefix calls
`describe-prefix-bindings'.  This changes that command to a
which-key paging command when `which-key-mode' is active."
  :type 'boolean
  :package-version '(which-key . "1.0") :version "30.1")