lsp

2025-01-14T04:47:37.986539Z

Shouldn't this get auto-completed:

(ns my-app.user)

(defn make-user
  [user-id, name, email, created-at]
  #:user{:user-id user-id,
         :name name,
         :email email,
         :created-at created-at})
And now anywhere I should type: :user/ I should get the list of all keywords that start with :user/ no? So it should auto-complete with: :user/user-id , :user/name and so on no?

✅ 1
2025-01-14T04:48:46.523149Z

Oh, it works now

👍 1