lambdaisland

Jee Lee 2024-03-10T14:02:17.054339Z

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?

Jee Lee 2024-03-10T14:02:31.323839Z

plexus 2024-03-10T15:57:44.033769Z

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
Jee Lee 2024-03-10T17:10:23.817789Z

Oh! Thank you. I fixed the issue by just disabling lsp in clojure (for now).