This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-03-10
Channels
- # aleph (1)
- # beginners (4)
- # biff (7)
- # calva (7)
- # cider (8)
- # clara (17)
- # clerk (19)
- # clj-kondo (30)
- # clojure (12)
- # clojure-austin (1)
- # clojure-europe (12)
- # clojure-losangeles (1)
- # clojure-norway (21)
- # clojurescript (2)
- # datalevin (1)
- # datomic (24)
- # duct (3)
- # fulcro (8)
- # hyperfiddle (8)
- # lambdaisland (4)
- # membrane (6)
- # missionary (7)
- # off-topic (55)
- # overtone (2)
- # reagent (4)
- # reitit (4)
- # releases (6)
- # shadow-cljs (80)
I tried creating a simple project with just one deps (aero) without using launchpad and it seems to show completions. Any idea why launching it with launchpad would not give me completions?
As someone pointed out there it looks like this is using lsp. Lsp is by design static, it inspects your deps.edn at boot, and does static analysis. Clojure is a dynamic language, where it makes more sense to get completions dynamically from the runtime, the way cider does. I would try to figure out how to disable lsp completions.
👍 1