Variable: transient-base-map

transient-base-map is a variable defined in transient.el.

Value

<next>       transient-scroll-up
<prior>      transient-scroll-down
C-M-v        transient-scroll-down
C-g          transient-quit-one
C-q          transient-quit-all
C-v          transient-scroll-up
C-z          transient-suspend
ESC ESC ESC  transient-quit-all

Documentation

Parent of other keymaps used by Transient.

This is the parent keymap of all the keymaps that are used in all transients: transient-map (which in turn is the parent of the transient-specific keymaps), transient-edit-map and transient-sticky-map.

If you change a binding here, then you might also have to edit transient-sticky-map and transient-common-commands. While the latter isn't a proper transient prefix command, it can be edited using the same functions as used for transients.

If you add a new command here, then you must also add a binding to transient-predicate-map.

Source Code

;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
;;; Keymaps

(defvar-keymap transient-base-map
  :doc "Parent of other keymaps used by Transient.

This is the parent keymap of all the keymaps that are used in
all transients: `transient-map' (which in turn is the parent
of the transient-specific keymaps), `transient-edit-map' and
`transient-sticky-map'.

If you change a binding here, then you might also have to edit
`transient-sticky-map' and `transient-common-commands'.  While
the latter isn't a proper transient prefix command, it can be
edited using the same functions as used for transients.

If you add a new command here, then you must also add a binding
to `transient-predicate-map'."
  "ESC ESC ESC" #'transient-quit-all
  "C-g"     #'transient-quit-one
  "C-q"     #'transient-quit-all
  "C-z"     #'transient-suspend
  "C-v"     #'transient-scroll-up
  "C-M-v"   #'transient-scroll-down
  "<next>"  #'transient-scroll-up
  "<prior>" #'transient-scroll-down)