Variable: transient-common-command-prefix
transient-common-command-prefix is a customizable variable defined in
transient.el.
Value
"C-x"
Documentation
The prefix key used for most commands common to all menus.
Some shared commands are available in all transient menus, most of which share a common prefix specified by this option. By default the bindings for these shared commands are only shown after pressing that prefix key and before following that up with a valid key binding.
For historic reasons \C-x is used by default, but users are
encouraged to pick another key, preferably one that is not commonly used
in Emacs but is still convenient to them. See info node (transient)
Common Suffix Commands.
Source Code
;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defun transient--init-common-commands ()
(transient--set-layout
'transient-common-commands
(list (eval (car (transient--parse-child 'transient-common-commands
transient-common-commands))
t)))
(defvar transient-common-command-prefix)
(defvar transient--docstr-hint-1)
(defvar transient--docstr-hint-2)
(setq transient--docstr-hint-1
(define-keymap transient-common-command-prefix
'transient-common-command-prefix))
(setq transient--docstr-hint-2
(define-keymap (concat transient-common-command-prefix " t")
'transient-toggle-common)))