Variable: flymake-mode-line-counter-format
flymake-mode-line-counter-format is a customizable variable defined in
flymake.el.gz.
Value
("[" flymake-mode-line-error-counter flymake-mode-line-warning-counter
flymake-mode-line-note-counter "]")
Documentation
Mode-line construct for formatting Flymake diagnostic counters.
This is a suitable place for placing the flymake-mode-line-error-counter,
flymake-mode-line-warning-counter and flymake-mode-line-note-counter
constructs.
Separating each of these with space is not necessary.
Probably introduced at or before Emacs version 28.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/flymake.el.gz
(defcustom flymake-mode-line-counter-format
'("["
flymake-mode-line-error-counter
flymake-mode-line-warning-counter
flymake-mode-line-note-counter "]")
"Mode-line construct for formatting Flymake diagnostic counters.
This is a suitable place for placing the `flymake-mode-line-error-counter',
`flymake-mode-line-warning-counter' and `flymake-mode-line-note-counter'
constructs.
Separating each of these with space is not necessary."
:type '(repeat (choice string symbol)))