Variable: embark-help-key

embark-help-key is a customizable variable defined in embark.el.

Value

"C-h"

Documentation

Key used for help.

The key must be either nil or a string. The string must be accepted by key-valid-p.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defcustom embark-help-key "C-h"
  "Key used for help.

The key must be either nil or a string.  The
string must be accepted by `key-valid-p'."
  :type '(choice (const "C-h")
                 (const "?")
                 (const :tag "None" nil)
                 key))