Function: kbd-key:hyperbole-hycontrol-key-p

kbd-key:hyperbole-hycontrol-key-p is a byte-compiled function defined in hib-kbd.el.

Signature

(kbd-key:hyperbole-hycontrol-key-p KEY-SERIES)

Documentation

Return t if KEY-SERIES is normalized, non-nil and in HyControl mode, else nil.

Allow for multiple key sequences strung together.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hib-kbd.el
(defun kbd-key:hyperbole-hycontrol-key-p (key-series)
  "Return t if KEY-SERIES is normalized, non-nil and in HyControl mode, else nil.
Allow for multiple key sequences strung together."
  (and key-series
       (featurep 'hycontrol)
       (or hycontrol-windows-mode hycontrol-frames-mode)
       ;; If wanted to limit to single key bindings and provide tighter checking:
       ;;   (string-match "[-.0-9]*\\(.*\\)" key-series)
       ;;   (kbd-key:binding (match-string 1 key-series))
       t))