Commit 061bdb473920

Vincent Demeester <vincent@sbr.pm>
2025-06-20 16:15:08
tools/emacs: small flymake configuration
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent e178bc7
Changed files (1)
tools
emacs
tools/emacs/init.el
@@ -255,6 +255,9 @@ minibuffer, even without explicitly focusing it."
 (use-package flymake
   :bind
   ("C-c f b" . flymake-show-buffer-diagnostics)
+  (:map flymake-mode-map
+        ("M-n" . flymake-goto-next-error)
+        ("M-p" . flymake-goto-prev-error))
   :hook
   (prog-mode . flymake-mode))