diff options
| author | Grégoire Duchêne <gduchene@awhk.org> | 2025-03-29 09:12:26 +0000 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@awhk.org> | 2025-03-29 09:12:26 +0000 |
| commit | 4e26c2c221c268d56fae0599093f300d1293a62f (patch) | |
| tree | 50261341b9bf6a285f237bf78a3d8169bb71c527 | |
| parent | db5c0a80f4605c976505976047d42541488a7d95 (diff) | |
emacs: Bind a few useful Flymake commands
| -rw-r--r-- | emacs/init.el | 8 |
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 |
