We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa90399 commit f27ecb3Copy full SHA for f27ecb3
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+- Fix coercers
6
+
7
## v1.13.0
8
9
- Add textDocument/selectionRange LSP feature coercers.
src/lsp4clj/coercer.clj
@@ -422,11 +422,12 @@
422
:ranges ::folding-ranges)
423
(s/conformer second)))
424
425
-(s/def :selection-range/parent ::selection-range-response)
426
427
(s/def ::selection-range-response
428
(s/keys :req-un [::range]
429
:opt-un [:selection-range/parent]))
430
+(s/def :selection-range/parent ::selection-range-response)
431
(s/def ::selection-ranges-response (s/coll-of ::selection-range-response))
432
433
(def inlay-hint-kind-enum {:type 1 :parameter 2})
0 commit comments