Use flycheck for error diagnostics
This commit is contained in:
parent
664dcd4fa8
commit
b9919507e3
1 changed files with 6 additions and 6 deletions
|
|
@ -140,12 +140,12 @@
|
|||
:custom
|
||||
(lsp-pylsp-plugins-flake8-enabled nil))
|
||||
|
||||
(use-package flymake
|
||||
:straight (:type built-in)
|
||||
:bind (:map flymake-mode-map
|
||||
("C-c C-n" . flymake-goto-next-error)
|
||||
("C-c C-p" . flymake-goto-prev-error)
|
||||
("C-c C-l" . flymake-show-buffer-diagnostics)))
|
||||
(use-package flycheck
|
||||
:init (global-flycheck-mode)
|
||||
:bind (:map flycheck-mode-map
|
||||
("C-c C-n" . flycheck-next-error)
|
||||
("C-c C-p" . flycheck-previous-error)
|
||||
("C-c C-l" . flycheck-list-errors)))
|
||||
|
||||
(use-package pyvenv)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue