Variable: flymake-diagnostics-buffer-mode-hook
flymake-diagnostics-buffer-mode-hook is a variable defined in
flymake.el.gz.
Value
nil
Documentation
Hook run after entering Flymake diagnostics mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
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))