Fork me on GitHub
#lambdaisland
<
2024-03-10
>
Jee Lee14:03:17

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?

plexus15:03:44

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 Lee17:03:23

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