Function: which-key-digit-argument
which-key-digit-argument is an interactive and byte-compiled function
defined in which-key.el.gz.
Signature
(which-key-digit-argument KEY)
Documentation
Version of digit-argument for use in which-key-C-h-map.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defun which-key-digit-argument (key)
"Version of `digit-argument' for use in `which-key-C-h-map'."
(interactive)
(let ((last-command-event (string-to-char key)))
(digit-argument key))
(let ((current-prefix-arg prefix-arg))
(which-key-reload-key-sequence)))