Function: transient-get-suffix
transient-get-suffix is a byte-compiled function defined in
transient.el.
Signature
(transient-get-suffix PREFIX LOC)
Documentation
Return the suffix or group at LOC in PREFIX.
PREFIX is a prefix command, a symbol.
LOC is a command, a key vector, a key description (a string
as returned by key-description), or a coordination list
(whose last element may also be a command or key).
See info node (transient)Modifying Existing Transients.
Source Code
;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defun transient-get-suffix (prefix loc)
"Return the suffix or group at LOC in PREFIX.
PREFIX is a prefix command, a symbol.
LOC is a command, a key vector, a key description (a string
as returned by `key-description'), or a coordination list
(whose last element may also be a command or key).
See info node `(transient)Modifying Existing Transients'."
(or (car (transient--locate-child prefix loc))
(error "%s not found in %s" loc prefix)))