Function: transient-history-next
transient-history-next is an interactive and byte-compiled function
defined in transient.el.
Signature
(transient-history-next)
Documentation
Switch to the next value used for the active transient.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defun transient-history-next ()
"Switch to the next value used for the active transient."
(interactive)
(let* ((obj transient--prefix)
(pos (1- (oref obj history-pos)))
(hst (oref obj history)))
(if (< pos 0)
(user-error "End of history")
(oset obj history-pos pos)
(oset obj value (nth pos hst))
(mapc #'transient-init-value transient--suffixes))))