Function: flymake-project-diagnostics-mode

flymake-project-diagnostics-mode is a byte-compiled function defined in flymake.el.gz.

Signature

(flymake-project-diagnostics-mode)

Documentation

A mode for listing Flymake diagnostics.

In addition to any hooks its parent mode tabulated-list-mode might have run, this mode runs the hook flymake-project-diagnostics-mode-hook, as the final or penultimate step during initialization.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/flymake.el.gz
(define-derived-mode flymake-project-diagnostics-mode tabulated-list-mode
  "Flymake diagnostics"
  "A mode for listing Flymake diagnostics."
  :interactive nil
  (setq tabulated-list-format
        (vconcat [("File" 25 t)]
                 flymake--diagnostics-base-tabulated-list-format))
  (setq tabulated-list-entries
        'flymake--project-diagnostics-entries)
  (tabulated-list-init-header))