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 3
3
/.lein-failures
4
4
.nrepl-port
5
5
** /* /.lsp /.cache
6
- ** /* /.clj-kondo /.cache
7
6
.lsp /.cache
8
- .clj-kondo /.cache
7
+
8
+ .clj-kondo /
9
+ ! .clj-kondo /config.edn
9
10
/out
10
11
target /
11
12
/.DS_Store
Original file line number Diff line number Diff line change 109
109
(s/def ::uri string? )
110
110
111
111
(s/def ::edits (s/coll-of ::text-edit ))
112
+ (s/def ::text-edits (s/coll-of ::text-edit ))
112
113
(s/def ::edits-or-error
113
114
(s/and (s/or :error ::response-error
114
115
:edits ::edits )
421
422
:ranges ::folding-ranges )
422
423
(s/conformer second)))
423
424
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
+
424
436
(s/def :server-capabilities/signature-help-provider
425
437
(s/conformer #(cond (vector? %) {:trigger-characters %}
426
438
(map? %) %
You can’t perform that action at this time.
0 commit comments