Function: embark--auto-prefix-help
embark--auto-prefix-help is a byte-compiled function defined in
embark.el.
Signature
(embark--auto-prefix-help)
Documentation
If the current keys are a prefix, simulate pressing help-char.
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark--auto-prefix-help ()
"If the current keys are a prefix, simulate pressing `help-char'."
(when (keymapp (key-binding (this-command-keys) 'accept-default))
(push help-char unread-command-events)))