Function: transient--do-move

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

Signature

(transient--do-move)

Documentation

Call the command if transient-enable-menu-navigation is non-nil.

In that case behave like transient--do-stay, otherwise similar to transient--do-warn.

Source Code

;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defun transient--do-move ()
  "Call the command if `transient-enable-menu-navigation' is non-nil.
In that case behave like `transient--do-stay', otherwise similar
to `transient--do-warn'."
  (unless transient-enable-menu-navigation
    (setq this-command 'transient-inhibit-move))
  transient--stay)