Variable: transient-show-docstring-format

transient-show-docstring-format is a customizable variable defined in transient.el.

Value

"%s"

Documentation

How to display suffix docstrings.

The command transient-toggle-docstrings toggles between showing suffix descriptions as usual, and instead or additionally displaying the suffix docstrings. The format specified here controls how that is done. %c is the description and %s is the docstring. Use "%-14c %s" or similar to display both.

This command is not bound by default, see its docstring for instructions.

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

Source Code

;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defcustom transient-show-docstring-format "%s"
  "How to display suffix docstrings.

The command `transient-toggle-docstrings' toggles between showing suffix
descriptions as usual, and instead or additionally displaying the suffix
docstrings.  The format specified here controls how that is done.  %c is
the description and %s is the docstring.  Use \"%-14c %s\" or similar to
display both.

This command is not bound by default, see its docstring for instructions."
  :package-version '(transient . "0.8.4")
  :group 'transient
  :type 'string)