summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2025-03-29 09:12:26 +0000
committerGrégoire Duchêne <gduchene@awhk.org>2025-03-29 09:12:26 +0000
commit4e26c2c221c268d56fae0599093f300d1293a62f (patch)
tree50261341b9bf6a285f237bf78a3d8169bb71c527
parentdb5c0a80f4605c976505976047d42541488a7d95 (diff)
emacs: Bind a few useful Flymake commands
-rw-r--r--emacs/init.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 7604227..301a164 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -224,6 +224,14 @@
(eshell-scroll-show-maximum-output nil)))
+;; Flymake
+
+(use-package flymake
+ :bind (:map flymake-mode-map
+ ("s-[" . flymake-goto-prev-error)
+ ("s-]" . flymake-goto-next-error)))
+
+
;; Go
(use-package go-mode