File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 33/.lein-failures
44.nrepl-port
55** /* /.lsp /.cache
6- ** /* /.clj-kondo /.cache
76.lsp /.cache
8- .clj-kondo /.cache
7+
8+ .clj-kondo /
9+ ! .clj-kondo /config.edn
910/out
1011target /
1112/.DS_Store
Original file line number Diff line number Diff line change 109109(s/def ::uri string? )
110110
111111(s/def ::edits (s/coll-of ::text-edit ))
112+ (s/def ::text-edits (s/coll-of ::text-edit ))
112113(s/def ::edits-or-error
113114 (s/and (s/or :error ::response-error
114115 :edits ::edits )
421422 :ranges ::folding-ranges )
422423 (s/conformer second)))
423424
425+ (def inlay-hint-kind-enum {:type 1 :parameter 2 })
426+
427+ (s/def :inlay-hint/kind (s/and keyword?
428+ inlay-hint-kind-enum
429+ (s/conformer inlay-hint-kind-enum)))
430+
431+ (s/def ::inlay-hint
432+ (s/keys :req-un [::position ::label ]
433+ :opt-un [:inlay-hint/kind ::text-edits ::tooltip ::padding-left ::padding-right ::data ]))
434+ (s/def ::inlay-hints (s/coll-of ::inlay-hint ))
435+
424436(s/def :server-capabilities/signature-help-provider
425437 (s/conformer #(cond (vector? %) {:trigger-characters %}
426438 (map? %) %
You can’t perform that action at this time.
0 commit comments