Add binds for moving between flymake errors
This commit is contained in:
parent
d3d915a1a0
commit
7190623426
|
@ -444,6 +444,11 @@
|
||||||
(eglot-autoshutdown t)
|
(eglot-autoshutdown t)
|
||||||
(eglot-autoreconnect nil))
|
(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
|
(setq project-switch-use-entire-map t
|
||||||
project-switch-commands 'project-dired)
|
project-switch-commands 'project-dired)
|
||||||
|
|
||||||
|
|
|
@ -527,6 +527,14 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
|
||||||
(eglot-autoshutdown t)
|
(eglot-autoshutdown t)
|
||||||
(eglot-autoreconnect nil))
|
(eglot-autoreconnect nil))
|
||||||
#+END_SRC
|
#+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
|
** Project
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq project-switch-use-entire-map t
|
(setq project-switch-use-entire-map t
|
||||||
|
|
Loading…
Reference in a new issue