Variable: transient-highlight-higher-levels

transient-highlight-higher-levels is a customizable variable defined in transient.el.

Value

nil

Documentation

Whether to highlight suffixes on higher levels.

This is primarily intended for package authors.

When non-nil then highlight the description of suffixes whose level is above 4, the default of transient-default-level. Assuming you have set that variable to 7, this highlights all suffixes that won't be available to users without them making the same customization.

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

Source Code

;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defcustom transient-highlight-higher-levels nil
  "Whether to highlight suffixes on higher levels.

This is primarily intended for package authors.

When non-nil then highlight the description of suffixes whose
level is above 4, the default of `transient-default-level'.
Assuming you have set that variable to 7, this highlights all
suffixes that won't be available to users without them making
the same customization."
  :package-version '(transient . "0.3.6")
  :group 'transient
  :type 'boolean)