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 9c573cc commit 6e7ff55Copy full SHA for 6e7ff55
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+- Add textDocument/selectionRange LSP feature coercers.
6
+
7
## v1.12.0
8
9
- Add inlay-hint LSP feature coercers.
src/lsp4clj/coercer.clj
@@ -422,6 +422,13 @@
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-ranges-response (s/coll-of ::selection-range-response))
431
432
(def inlay-hint-kind-enum {:type 1 :parameter 2})
433
434
(s/def :inlay-hint/kind (s/and keyword?
0 commit comments