This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-11-13
Channels
- # announcements (2)
- # babashka (30)
- # beginners (44)
- # biff (20)
- # calva (15)
- # cider (7)
- # clerk (4)
- # clojure (15)
- # clojure-austin (1)
- # clojure-europe (35)
- # clojure-hungary (1)
- # clojure-nl (1)
- # clojure-norway (6)
- # clojure-uk (7)
- # clojurescript (33)
- # conjure (1)
- # cryogen (1)
- # cursive (3)
- # data-science (8)
- # docker (2)
- # emacs (78)
- # gratitude (2)
- # hyperfiddle (26)
- # improve-getting-started (1)
- # jobs-discuss (12)
- # lsp (7)
- # malli (11)
- # missionary (57)
- # off-topic (14)
- # pathom (13)
- # portal (6)
- # reagent (6)
- # releases (3)
- # ring (25)
- # shadow-cljs (18)
- # squint (11)
- # vim (3)
is there a short cut for "show me all the errors and warnings in this file"? (Normally i can search using the modeline and the gui tree, but that's currently throwing errors for me.)
If you're using emacs and flycheck (and consult), one possibility is consult-flycheck
lsp-treemacs-error-list
shows all the errors in the project, organised by files which can be expanded to show just errors from that file.
I recommend setting lsp-treemacs-error-list-current-project-only t
in the Emacs configuration to limit errors to current project.
Example from Spacemacs, using , g e
key binding for lsp-treemacs-error-list
RTN
on the file name in the list will open the source file, so I typically open the error list for the project and use that list to drive fixing LSP identified errors across the project.
, g e
results in what you see in the picture. Which has the view your showing, and also a bunch of weirdness. I suspect the weirdness is just on my end and isn't normal behavior right?
That extra window also appears briefly for me. I haven't investigated why or what it's showing