Variable: transient-describe-menu

transient-describe-menu is a customizable variable defined in transient.el.

Value

nil

Documentation

Whether to begin the menu buffer with a very short description.

When this is non-nil, then the menu buffer begins with a short description. Ideally this is a string written exactly for that purpose, but because this is a new feature, most menu commands do not provide that yet. In that case the first line of the prefix command's docstring is used as fallback. If the value is docstring, then the docstring is used even if a description is available.

This variable was added, or its default value changed, in transient version 0.13.0.

Source Code

;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defcustom transient-describe-menu nil
  "Whether to begin the menu buffer with a very short description.

When this is non-nil, then the menu buffer begins with a short
description.  Ideally this is a string written exactly for that
purpose, but because this is a new feature, most menu commands
do not provide that yet.  In that case the first line of the prefix
command's docstring is used as fallback.  If the value is `docstring',
then the docstring is used even if a description is available."
  :package-version '(transient . "0.13.0")
  :group 'transient
  :type '(choice (const :tag "Insert description" t)
                 (const :tag "Insert docstring summary" docstring)
                 (const :tag "Do not insert description" nil)))