Variable: magit-process-error-tooltip-max-lines

magit-process-error-tooltip-max-lines is a customizable variable defined in magit-process.el.

Value

20

Documentation

The number of lines for magit-process-error-lines to return.

These are displayed in a tooltip for mode-line-process errors.

If magit-process-error-tooltip-max-lines is nil, the tooltip displays the text of magit-process-error-summary instead.

This variable was added, or its default value changed, in magit version 2.12.0.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-process.el
(defcustom magit-process-error-tooltip-max-lines 20
  "The number of lines for `magit-process-error-lines' to return.

These are displayed in a tooltip for `mode-line-process' errors.

If `magit-process-error-tooltip-max-lines' is nil, the tooltip
displays the text of `magit-process-error-summary' instead."
  :package-version '(magit . "2.12.0")
  :group 'magit-process
  :type '(choice (const :tag "Use summary line" nil)
                 integer))