Function: which-key--god-mode-this-command-keys

which-key--god-mode-this-command-keys is a byte-compiled function defined in which-key.el.gz.

Signature

(which-key--god-mode-this-command-keys)

Documentation

Version of this-single-command-keys corrected for god-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defun which-key--god-mode-this-command-keys ()
  "Version of `this-single-command-keys' corrected for god-mode."
  (let ((this-command-keys (this-single-command-keys)))
    (when (and which-key--god-mode-support-enabled
               (bound-and-true-p god-local-mode)
               (eq this-command 'god-mode-self-insert))
      (setq this-command-keys (when which-key--god-mode-key-string
                                (kbd which-key--god-mode-key-string))))
    this-command-keys))