@@ -40,6 +40,8 @@ let insertTextFormatToInt f =
40
40
match f with
41
41
| Snippet -> 2
42
42
43
+ type textEdit = {range : range ; newText : string }
44
+
43
45
type completionItem = {
44
46
label : string ;
45
47
kind : int ;
@@ -51,7 +53,7 @@ type completionItem = {
51
53
insertText : string option ;
52
54
documentation : markupContent option ;
53
55
data : (string * string ) list option ;
54
- range : range option ;
56
+ additionalTextEdits : textEdit list option ;
55
57
}
56
58
57
59
type location = {uri : string ; range : range }
@@ -62,8 +64,6 @@ type documentSymbolItem = {
62
64
children : documentSymbolItem list ;
63
65
}
64
66
type renameFile = {oldUri : string ; newUri : string }
65
- type textEdit = {range : range ; newText : string }
66
-
67
67
type diagnostic = {range : range ; message : string ; severity : int }
68
68
69
69
type optionalVersionedTextDocumentIdentifier = {
@@ -105,6 +105,14 @@ let stringifyRange r =
105
105
(stringifyPosition r.start)
106
106
(stringifyPosition r.end_)
107
107
108
+ let stringifyTextEdit (te : textEdit ) =
109
+ Printf. sprintf
110
+ {| {
111
+ " range" : % s,
112
+ " newText" : % s
113
+ }| }
114
+ (stringifyRange te.range) (wrapInQuotes te.newText)
115
+
108
116
let stringifyMarkupContent (m : markupContent ) =
109
117
Printf. sprintf {| {" kind" : % s, " value" : % s}| } (wrapInQuotes m.kind)
110
118
(wrapInQuotes m.value)
@@ -143,10 +151,7 @@ let stringifyCompletionItem c =
143
151
| Some doc -> stringifyMarkupContent doc) );
144
152
(" sortText" , optWrapInQuotes c.sortText);
145
153
(" filterText" , optWrapInQuotes c.filterText);
146
- ( " insertText" ,
147
- match c.range with
148
- | Some _ -> None
149
- | None -> optWrapInQuotes c.insertText );
154
+ (" insertText" , optWrapInQuotes c.insertText);
150
155
( " insertTextFormat" ,
151
156
match c.insertTextFormat with
152
157
| None -> None
@@ -160,19 +165,10 @@ let stringifyCompletionItem c =
160
165
(fields
161
166
|> List. map (fun (key , value ) -> (key, Some (wrapInQuotes value)))
162
167
|> stringifyObject ~indentation: 2 ) );
163
- ( " textEdit" ,
164
- match c.range with
165
- | Some range ->
166
- Some
167
- (stringifyObject
168
- [
169
- (" range" , Some (stringifyRange range));
170
- ( " newText" ,
171
- optWrapInQuotes
172
- (match c.insertText with
173
- | None -> Some c.label
174
- | v -> v) );
175
- ])
168
+ ( " additionalTextEdits" ,
169
+ match c.additionalTextEdits with
170
+ | Some additionalTextEdits ->
171
+ Some (additionalTextEdits |> List. map stringifyTextEdit |> array )
176
172
| None -> None );
177
173
]
178
174
@@ -233,13 +229,6 @@ let stringifyRenameFile {oldUri; newUri} =
233
229
}| }
234
230
(wrapInQuotes oldUri) (wrapInQuotes newUri)
235
231
236
- let stringifyTextEdit (te : textEdit ) =
237
- Printf. sprintf {| {
238
- " range" : % s,
239
- " newText" : % s
240
- }| }
241
- (stringifyRange te.range) (wrapInQuotes te.newText)
242
-
243
232
let stringifyoptionalVersionedTextDocumentIdentifier td =
244
233
Printf. sprintf {| {
245
234
" version" : % s,
0 commit comments