Function: flymake-diagnostics-buffer-mode
flymake-diagnostics-buffer-mode is a byte-compiled function defined in
flymake.el.gz.
Signature
(flymake-diagnostics-buffer-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-diagnostics-buffer-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-diagnostics-buffer-mode tabulated-list-mode
"Flymake diagnostics"
"A mode for listing Flymake diagnostics."
:interactive nil
(flymake--tabulated-setup nil))