summaryrefslogtreecommitdiffstats
path: root/lisp/init-flymake.el
blob: 94df6fcac5e9539626110075dfb6a8b47fedd671 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; init-flymake.el --- configure flymake  -*- lexical-binding:t -*-
;;; Commentary:
;;; Code:

(use-package flymake
  :bind (:map flymake-mode-map
              ;; C-c m l shows a list of all errors
              ("C-c m l" . flymake-show-buffer-diagnostics)
              ;; C-c m n/p navigates to next/previous error
              ("C-c m n" . flymake-goto-next-error)
              ("C-c m p" . flymake-goto-prev-error)))

(provide 'init-flymake)

;;; init-flymake.el ends here