Add binds for moving between flymake errors

This commit is contained in:
Evie Litherland-Smith 2023-11-27 15:24:47 +00:00
parent d3d915a1a0
commit 7190623426
2 changed files with 13 additions and 0 deletions

View file

@ -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)

View file

@ -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