summaryrefslogtreecommitdiffstats
path: root/lisp/init-flymake.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/init-flymake.el')
-rw-r--r--lisp/init-flymake.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/init-flymake.el b/lisp/init-flymake.el
index 00aa2bd..94df6fc 100644
--- a/lisp/init-flymake.el
+++ b/lisp/init-flymake.el
@@ -4,11 +4,11 @@
(use-package flymake
:bind (:map flymake-mode-map
- ;; C-c d l shows a list of all errors
- ("C-c d l" . flymake-show-buffer-diagnostics)
- ;; 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)))
+ ;; 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)