Variable: transient-map

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

Value

<next>       transient-scroll-up
<prior>      transient-scroll-down
?            transient-help
C--          negative-argument
C-M-n        transient-history-next
C-M-p        transient-history-prev
C-M-v        transient-scroll-down
C-g          transient-quit-one
C-h          transient-help
C-q          transient-quit-all
C-t          transient-show
C-u          universal-argument
C-v          transient-scroll-up
C-x 4 4      other-window-prefix
C-x 5 5      other-frame-prefix
C-z          transient-suspend
ESC ESC ESC  transient-quit-all

Documentation

Top-level keymap used by all transients.

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

Source Code

;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defvar-keymap transient-map
  :doc "Top-level keymap used by all transients.

If you add a new command here, then you must also add a binding
to `transient-predicate-map'.  See also `transient-base-map'."
  :parent transient-base-map
  "C-u"     #'universal-argument
  "C--"     #'negative-argument
  "C-t"     #'transient-show
  "?"       #'transient-help
  "C-h"     #'transient-help
  "C-x 5 5" #'other-frame-prefix
  "C-x 4 4" #'other-window-prefix
  ;; These have additional bindings in transient-common-commands.
  "C-M-p"   #'transient-history-prev
  "C-M-n"   #'transient-history-next)