2
2
Completion ,
3
3
CompletionContext ,
4
4
CompletionResult ,
5
+ snippetCompletion ,
5
6
} from "@codemirror/autocomplete" ;
6
7
import { syntaxTree } from "@codemirror/language" ;
7
8
import { SyntaxNode } from "@lezer/common" ;
@@ -72,10 +73,6 @@ export class JSONCompletion {
72
73
} else {
73
74
const word = ctx . matchBefore ( / [ A - Z a - z 0 - 9 . _ ] * / ) ;
74
75
const overwriteStart = ctx . pos - currentWord . length ;
75
- // if (overwriteStart > 0 && text[overwriteStart - 1] === '"') {
76
- // overwriteStart--;
77
- // debug.log('xxx', 'overwriteStart--', overwriteStart);
78
- // }
79
76
debug . log (
80
77
"xxx" ,
81
78
"overwriteStart after" ,
@@ -163,6 +160,14 @@ export class JSONCompletion {
163
160
) ;
164
161
return result ;
165
162
}
163
+ private applySnippetCompletion ( completion : Completion ) {
164
+ return snippetCompletion (
165
+ typeof completion . apply !== "string"
166
+ ? completion . label
167
+ : completion . apply ,
168
+ completion
169
+ ) ;
170
+ }
166
171
167
172
private getPropertyCompletions (
168
173
schema : JSONSchema7 ,
@@ -204,7 +209,7 @@ export class JSONCompletion {
204
209
detail : typeStr ,
205
210
info : description ,
206
211
} ;
207
- collector . add ( completion ) ;
212
+ collector . add ( this . applySnippetCompletion ( completion ) ) ;
208
213
}
209
214
} ) ;
210
215
}
@@ -219,7 +224,7 @@ export class JSONCompletion {
219
224
apply : this . getInsertTextForProperty ( label , addValue ) ,
220
225
type : "property" ,
221
226
} ;
222
- collector . add ( completion ) ;
227
+ collector . add ( this . applySnippetCompletion ( completion ) ) ;
223
228
}
224
229
} ) ;
225
230
}
@@ -231,7 +236,7 @@ export class JSONCompletion {
231
236
apply : this . getInsertTextForProperty ( label , addValue ) ,
232
237
type : "property" ,
233
238
} ;
234
- collector . add ( completion ) ;
239
+ collector . add ( this . applySnippetCompletion ( completion ) ) ;
235
240
}
236
241
}
237
242
} ) ;
@@ -245,7 +250,7 @@ export class JSONCompletion {
245
250
// just use the unquoted key as the label, which is nicer
246
251
// and gives us more control.
247
252
// If no property value is present, then we add the colon as well.
248
- // TODO: Use snippetCompletion to handle insert value + position cursor e.g. "key": "#{}"
253
+ // Use snippetCompletion to handle insert value + position cursor e.g. "key": "#{}"
249
254
// doc: https://codemirror.net/docs/ref/#autocomplete.snippetCompletion
250
255
// idea: https://discuss.codemirror.net/t/autocomplete-cursor-position-in-apply-function/4088/3
251
256
private getInsertTextForProperty (
@@ -329,13 +334,10 @@ export class JSONCompletion {
329
334
}
330
335
}
331
336
if ( ! value || nValueProposals > 1 ) {
332
- value = "$1 " ;
337
+ value = "#{} " ;
333
338
}
334
339
335
- // TODO: Use this instead to handle insert value + position cursor e.g. "key": "#{}" when using snippetCompletion
336
- // return resultText + value;
337
-
338
- return resultText ;
340
+ return resultText + value ;
339
341
}
340
342
341
343
private getInsertTextForGuessedValue (
0 commit comments