Variable: transient-show-menu
transient-show-menu is a customizable variable defined in
transient.el.
Value
t
Documentation
Whether and when to show transient's menu in a buffer.
- If t (the default), then show the buffer as soon as a transient
prefix command is invoked.
- If nil, then do not show the buffer unless the user explicitly
requests it, by pressing C-t (transient-show) or a prefix key.
- If a number, then delay displaying the buffer and instead show
a brief one-line summary. If zero or negative, then suppress
even showing that summary and display the pressed key only.
Show the buffer once the user explicitly requests it by pressing
C-t (transient-show) or a prefix key. Unless zero, then also show the buffer
after that many seconds of inactivity (using the absolute value).
This variable was added, or its default value changed, in transient version 0.1.0.
Aliases
transient-show-popup (obsolete since transient 0.13.0)
Source Code
;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defcustom transient-show-menu t
"Whether and when to show transient's menu in a buffer.
\\<transient-map>\
- If t (the default), then show the buffer as soon as a transient
prefix command is invoked.
- If nil, then do not show the buffer unless the user explicitly
requests it, by pressing \\[transient-show] or a prefix key.
- If a number, then delay displaying the buffer and instead show
a brief one-line summary. If zero or negative, then suppress
even showing that summary and display the pressed key only.
Show the buffer once the user explicitly requests it by pressing
\\[transient-show] or a prefix key. Unless zero, then also show the buffer
after that many seconds of inactivity (using the absolute value)."
:package-version '(transient . "0.1.0")
:group 'transient
:type '(choice (const :tag "Instantly" t)
(const :tag "On demand" nil)
(const :tag "On demand (no summary)" 0)
(number :tag "After delay" 1)))