Function: transient--do-minus
transient--do-minus is a byte-compiled function defined in
transient.el.
Signature
(transient--do-minus)
Documentation
Call negative-argument or pivot to transient-update.
If negative-argument is invoked using "-" then preserve the
prefix argument and pivot to transient-update.
Source Code
;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defun transient--do-minus ()
"Call `negative-argument' or pivot to `transient-update'.
If `negative-argument' is invoked using \"-\" then preserve the
prefix argument and pivot to `transient-update'."
(when (equal (this-command-keys) "-")
(setq this-command 'transient-update))
transient--stay)