Function: kbd-key:execute

kbd-key:execute is an interactive and byte-compiled function defined in hib-kbd.el.

Signature

(kbd-key:execute KEY-SERIES)

Documentation

Execute a possibly non-normalized KEY-SERIES.

The KEY-SERIES can be with or without curly brace delimiters. Return t if KEY-SERIES is a valid key series that is executed, else nil.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hib-kbd.el
(defun kbd-key:execute (key-series)
  "Execute a possibly non-normalized KEY-SERIES.
The KEY-SERIES can be with or without curly brace delimiters.
Return t if KEY-SERIES is a valid key series that is executed, else nil."
  (interactive "sKey series to execute: ")
  (when (and key-series
	     (setq key-series (kbd-key:is-p key-series)))
    (hact #'kbd-key:act key-series)))