Function: transient-suffixes
transient-suffixes is a byte-compiled function defined in
transient.el.
Signature
(transient-suffixes PREFIX)
Documentation
Return the suffix objects of the transient prefix command PREFIX.
If PREFIX is not the current prefix, initialize the suffixes so that they can be returned. That does not cause the menu to be displayed.
Source Code
;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defun transient-suffixes (prefix)
"Return the suffix objects of the transient prefix command PREFIX.
If PREFIX is not the current prefix, initialize the suffixes so that
they can be returned. That does not cause the menu to be displayed."
(if (eq transient-current-command prefix)
transient-current-suffixes
(let ((transient--prefix (transient--init-prefix prefix)))
(transient--flatten-suffixes
(transient--init-suffixes prefix)))))