Function: transient--do-replace

transient--do-replace is a byte-compiled function defined in transient.el.

Signature

(transient--do-replace)

Documentation

Call the transient prefix command, replacing the active transient.

Do not push the active transient to the transient stack.

Source Code

;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defun transient--do-replace ()
  "Call the transient prefix command, replacing the active transient.
Do not push the active transient to the transient stack."
  (transient--export)
  (setq transient--exitp 'replace)
  transient--exit)