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 a project.
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.
C-o flymake-show-diagnostic
RET flymake-goto-diagnostic
SPC flymake-show-diagnostic
n next-error-this-buffer-no-select
p previous-error-this-buffer-no-select
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 in a project."
:interactive nil
(flymake--tabulated-setup t))