Function: kbd-key:extended-command-p

kbd-key:extended-command-p is a byte-compiled function defined in hib-kbd.el.

Signature

(kbd-key:extended-command-p KEY-SERIES)

Documentation

Return non-nil if the KEY-SERIES is a normalized extended command invocation.

That is, M-x command.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hib-kbd.el
(defun kbd-key:extended-command-p (key-series)
  "Return non-nil if the KEY-SERIES is a normalized extended command invocation.
That is, `M-x command'."
  (when (stringp key-series)
    (string-match kbd-key:extended-command-prefix key-series)))