Variable: flymake-show-diagnostics-at-end-of-line

flymake-show-diagnostics-at-end-of-line is a customizable variable defined in flymake.el.gz.

Value

nil

Documentation

If non-nil, add diagnostic summary messages at end-of-line.

The value short means that only the most severe diagnostic shall be shown. The value fancy means to layout diagnostic summary information below the affected line with Unicode graphics. Any other non-nil value means show all diagnostic summaries at end-of-line.

This variable was added, or its default value changed, in Flymake version 1.3.6.

Probably introduced at or before Emacs version 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/flymake.el.gz
(defcustom flymake-show-diagnostics-at-end-of-line nil
  "If non-nil, add diagnostic summary messages at end-of-line.
The value `short' means that only the most severe diagnostic
shall be shown.
The value `fancy' means to layout diagnostic summary information
below the affected line with Unicode graphics.
Any other non-nil value means show all diagnostic summaries at
end-of-line."
  :type '(choice (const :tag "Display most severe diagnostic" short)
                 (const :tag "Display all diagnostics" t)
                 (const :tag "Display all diagnostics using Unicode" fancy)
                 (const :tag "Don't display diagnostics at end-of-line" nil))
  :package-version '(Flymake . "1.3.6"))