@@ -240,25 +240,23 @@ export function completionsFromClassList(
240
240
items : Object . keys ( isSubset ? subset : state . classNames . classNames )
241
241
. filter ( ( k ) => k !== '__info' )
242
242
. filter ( ( className ) => isContextItem ( state , [ ...subsetKey , className ] ) )
243
- . map (
244
- ( className , index ) : CompletionItem => {
245
- return {
246
- label : className + sep ,
247
- kind : 9 ,
248
- documentation : null ,
249
- command : {
250
- title : '' ,
251
- command : 'editor.action.triggerSuggest' ,
252
- } ,
253
- sortText : '-' + naturalExpand ( index ) ,
254
- data : [ ...subsetKey , className ] ,
255
- textEdit : {
256
- newText : className + sep ,
257
- range : replacementRange ,
258
- } ,
259
- }
243
+ . map ( ( className , index ) : CompletionItem => {
244
+ return {
245
+ label : className + sep ,
246
+ kind : 9 ,
247
+ documentation : null ,
248
+ command : {
249
+ title : '' ,
250
+ command : 'editor.action.triggerSuggest' ,
251
+ } ,
252
+ sortText : '-' + naturalExpand ( index ) ,
253
+ data : [ ...subsetKey , className ] ,
254
+ textEdit : {
255
+ newText : className + sep ,
256
+ range : replacementRange ,
257
+ } ,
260
258
}
261
- )
259
+ } )
262
260
. concat (
263
261
Object . keys ( isSubset ? subset : state . classNames . classNames )
264
262
. filter ( ( className ) =>
0 commit comments