Function: flymake-diagnostics-buffer-mode

flymake-diagnostics-buffer-mode is an interactive and 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.

RET flymake-goto-diagnostic
SPC flymake-show-diagnostic

Key Bindings

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."
  (setq tabulated-list-format flymake--diagnostics-base-tabulated-list-format)
  (setq tabulated-list-entries
        'flymake--diagnostics-buffer-entries)
  (tabulated-list-init-header))