Variable: magit-process-log-max
magit-process-log-max is a customizable variable defined in
magit-process.el.
Value
32
Documentation
Maximum number of sections to keep in a process log buffer.
When adding a new section would go beyond the limit set here, then the older half of the sections are remove. Sections that belong to processes that are still running are never removed. When this is nil, no sections are ever removed.
This variable was added, or its default value changed, in magit version 2.1.0.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-process.el
(defcustom magit-process-log-max 32
"Maximum number of sections to keep in a process log buffer.
When adding a new section would go beyond the limit set here,
then the older half of the sections are remove. Sections that
belong to processes that are still running are never removed.
When this is nil, no sections are ever removed."
:package-version '(magit . "2.1.0")
:group 'magit-process
:type '(choice (const :tag "Never remove old sections" nil) integer))