summaryrefslogtreecommitdiffstats
path: root/lisp/init-flymake.el
blob: 3b28063e89e5582093f7899883339bb4e678ada2 (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 d l shows a list of all errors
              ("C-c d l" . flymake-show-diagnostics-buffer)
              ;; C-c d n/p navigates to next/previous error
              ("C-c d n" . flymake-goto-next-error)
              ("C-c d p" . flymake-goto-prev-error)))

(provide 'init-flymake)

;;; init-flymake.el ends here