Function: transient--do-replace

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

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 /usr/src/emacs/lisp/transient.el.gz
(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)