From 7190623426b9f8bf331ce2a2a91b156235b24189 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 27 Nov 2023 15:24:47 +0000 Subject: [PATCH] Add binds for moving between flymake errors --- home/emacs/init.el | 5 +++++ home/emacs/init.org | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/home/emacs/init.el b/home/emacs/init.el index bdbac7f6..8c75468b 100644 --- a/home/emacs/init.el +++ b/home/emacs/init.el @@ -444,6 +444,11 @@ (eglot-autoshutdown t) (eglot-autoreconnect nil)) +(use-package flymake + :ensure t + :bind (("C-c C-." . flymake-goto-next-error) + ("C-c C-," . flymake-goto-prev-error))) + (setq project-switch-use-entire-map t project-switch-commands 'project-dired) diff --git a/home/emacs/init.org b/home/emacs/init.org index ceedb5bd..9c6e08d6 100644 --- a/home/emacs/init.org +++ b/home/emacs/init.org @@ -527,6 +527,14 @@ For reference information, see [[https://orgmode.com][Org-mode website]] (eglot-autoshutdown t) (eglot-autoreconnect nil)) #+END_SRC + +** Flymake +#+begin_src emacs-lisp :tangle yes + (use-package flymake + :ensure t + :bind (("C-c C-." . flymake-goto-next-error) + ("C-c C-," . flymake-goto-prev-error))) +#+end_src ** Project #+BEGIN_SRC emacs-lisp (setq project-switch-use-entire-map t