Function: transient-insert-suffix

transient-insert-suffix is an autoloaded and byte-compiled function defined in transient.el.

Signature

(transient-insert-suffix PREFIX LOC SUFFIX &optional KEEP-OTHER)

Documentation

Insert a SUFFIX into PREFIX before LOC.

PREFIX is a prefix command, a symbol. SUFFIX is a suffix command or a group specification (of
  the same forms as expected by transient-define-prefix).
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).
Remove a conflicting binding unless optional KEEP-OTHER is
  non-nil. When the conflict appears to be a false-positive,
  non-nil KEEP-OTHER may be ignored, which can be prevented
  by using always.
See info node (transient)Modifying Existing Transients.

Source Code

;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
;;;###autoload
(defun transient-insert-suffix (prefix loc suffix &optional keep-other)
  "Insert a SUFFIX into PREFIX before LOC.
PREFIX is a prefix command, a symbol.
SUFFIX is a suffix command or a group specification (of
  the same forms as expected by `transient-define-prefix').
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).
Remove a conflicting binding unless optional KEEP-OTHER is
  non-nil.  When the conflict appears to be a false-positive,
  non-nil KEEP-OTHER may be ignored, which can be prevented
  by using `always'.
See info node `(transient)Modifying Existing Transients'."
  (declare (indent defun))
  (transient--insert-suffix prefix loc suffix 'insert keep-other))