Function: hydra--head-property
hydra--head-property is a byte-compiled function defined in hydra.el.
Signature
(hydra--head-property H PROP &optional DEFAULT)
Documentation
Return for Hydra head H the value of property PROP.
Return DEFAULT if PROP is not in H.
Source Code
;; Defined in ~/.emacs.d/elpa/hydra-20250316.1254/hydra.el
(defun hydra--head-property (h prop &optional default)
"Return for Hydra head H the value of property PROP.
Return DEFAULT if PROP is not in H."
(hydra-plist-get-default (cl-cdddr h) prop default))