Function: hydra-get-property

hydra-get-property is a byte-compiled function defined in hydra.el.

Signature

(hydra-get-property NAME KEY)

Documentation

Get hydra property.

NAME is the symbolic name of the hydra. KEY is forwarded to plist-get.

Source Code

;; Defined in ~/.emacs.d/elpa/hydra-20250316.1254/hydra.el
(defun hydra-get-property (name key)
  "Get hydra property.
NAME is the symbolic name of the hydra.
KEY is forwarded to `plist-get'."
  (let ((entry (assoc name hydra-props-alist)))
    (when entry
      (plist-get (cdr entry) key))))