lsp 2025-01-14

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

Oh, it works now

👍 1