This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-02-15
Channels
- # announcements (5)
- # babashka (56)
- # beginners (24)
- # biff (15)
- # calva (7)
- # clj-kondo (12)
- # cljsrn (8)
- # clojure (68)
- # clojure-denmark (1)
- # clojure-europe (55)
- # clojure-norway (4)
- # clojure-spec (9)
- # clojure-uk (2)
- # clojurescript (8)
- # cursive (11)
- # data-science (7)
- # datahike (1)
- # datomic (66)
- # emacs (12)
- # etaoin (3)
- # fulcro (10)
- # graphql (3)
- # hyperfiddle (97)
- # jobs (1)
- # kaocha (8)
- # lsp (3)
- # malli (15)
- # meander (1)
- # off-topic (3)
- # overtone (4)
- # polylith (7)
- # rdf (25)
- # re-frame (4)
- # reagent (14)
- # remote-jobs (1)
- # shadow-cljs (126)
- # sql (30)
- # vscode (3)
- # xtdb (8)
Hey, with regards to the linked question, @pez redirected me here with the info that it could be a classpath problem. Must I configure in .lsp
to exclude certain paths?
If you want to exclude the resources
folder you should change the :source-paths-ignore-regex
setting, https://github.com/clojure-lsp/clojure-lsp/blob/master/docs/all-available-settings.edn#L6 the value is only exclude target
folder.
so something like that should work:
.lsp/config.edn
{:source-paths-ignore-regex ["target.*" "resources.*"]}
🙏 2
cool, that worked! i needed to remove .lsp/.cache
first and then after a restart of the lsp server it worked! thank you @UKFSJSM38
👍 4