summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Wilken2022-11-24 00:39:15 +0100
committerTimo Wilken2022-11-24 00:39:15 +0100
commit0e27e61906fb6c5109a2db84924b618b688fb2e6 (patch)
tree7618882962679c77ebd69f8b810563a70dac996d
parentb449bf919f367cbff66674c6949d60935d327e7d (diff)
Add flymake keybindings
-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."))