aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emacs-init.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/emacs-init.el b/emacs-init.el
index 58114669..bcf4cb75 100644
--- a/emacs-init.el
+++ b/emacs-init.el
@@ -182,7 +182,12 @@
:init (which-key-add-key-based-replacements
"<leader>e" '("errors" . "Flymake"))
:bind (("<leader>el" . flymake-show-buffer-diagnostics)
- ("<leader>ep" . flymake-show-project-diagnostics))
+ ("<leader>ep" . flymake-show-project-diagnostics)
+ ("<leader>en" . flymake-goto-next-error)
+ ("<leader>eN" . flymake-goto-prev-error)
+ ("<leader>eb" . flymake-start)
+ ("<leader>ec" . flymake-proc-compile)
+ ("<leader>eq" . flymake-proc-stop-all-syntax-checks))
:custom
(flymake-suppress-zero-counters t "Don't show severity counters that are zero at all."))