Function: which-key--this-command-keys
which-key--this-command-keys is a byte-compiled function defined in
which-key.el.gz.
Signature
(which-key--this-command-keys)
Documentation
Version of this-single-command-keys corrected for key-chords.
Source Code
;; Defined in /usr/src/emacs/lisp/which-key.el.gz
;;; Third-party library support
(defun which-key--this-command-keys ()
"Version of `this-single-command-keys' corrected for key-chords."
(let ((this-command-keys (this-single-command-keys)))
(when (and (vectorp this-command-keys)
(> (length this-command-keys) 0)
(eq (aref this-command-keys 0) 'key-chord)
(bound-and-true-p key-chord-mode))
(setq this-command-keys (this-single-command-raw-keys)))
this-command-keys))