Variable: which-key-C-h-map-prompt

which-key-C-h-map-prompt is a variable defined in which-key.el.gz.

Value

" \\<which-key-C-h-map> \\[which-key-show-next-page-cycle] : next-page, \\[which-key-show-previous-page-cycle] : previous-page, \\[which-key-undo-key] : undo-key, \\[which-key-toggle-docstrings] : toggle-docstrings, \\[which-key-show-standard-help] : help, \\[which-key-abort] : abort 1..9 : digit-arg"

Documentation

Prompt to display when invoking which-key-C-h-map.

This string is fed into substitute-command-keys

Source Code

;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defvar which-key-C-h-map-prompt
  (concat " \\<which-key-C-h-map>"
          " \\[which-key-show-next-page-cycle]"
          which-key-separator "next-page,"
          " \\[which-key-show-previous-page-cycle]"
          which-key-separator "previous-page,"
          " \\[which-key-undo-key]"
          which-key-separator "undo-key,"
          " \\[which-key-toggle-docstrings]"
          which-key-separator "toggle-docstrings,"
          " \\[which-key-show-standard-help]"
          which-key-separator "help,"
          " \\[which-key-abort]"
          which-key-separator "abort"
          " 1..9"
          which-key-separator "digit-arg")
  "Prompt to display when invoking `which-key-C-h-map'.
This string is fed into `substitute-command-keys'")