File tree 2 files changed +19
-0
lines changed
2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " vscode-apollo " : patch
3
+ ---
4
+
5
+ Improve syntax highlighting for GraphQL block strings
Original file line number Diff line number Diff line change 485
485
"1" : { "name" : " constant.language.null.graphql" }
486
486
}
487
487
},
488
+ "graphql-block-string-value" : {
489
+ "contentName" : " string.quoted.triple.block.graphql" ,
490
+ "begin" : " \\ s*+((\"\"\" ))" ,
491
+ "end" : " \\ s*+((\"\"\" ))" ,
492
+ "beginCaptures" : {
493
+ "1" : { "name" : " string.quoted.triple.block.graphql" },
494
+ "2" : { "name" : " punctuation.definition.string.begin.graphql" }
495
+ },
496
+ "endCaptures" : {
497
+ "1" : { "name" : " string.quoted.triple.block.graphql" },
498
+ "2" : { "name" : " punctuation.definition.string.end.graphql" }
499
+ }
500
+ },
488
501
"graphql-string-value" : {
489
502
"contentName" : " string.quoted.double.graphql" ,
490
503
"begin" : " \\ s*+((\" ))" ,
553
566
"patterns" : [
554
567
{ "include" : " #graphql-variable-name" },
555
568
{ "include" : " #graphql-float-value" },
569
+ { "include" : " #graphql-block-string-value" },
556
570
{ "include" : " #graphql-string-value" },
557
571
{ "include" : " #graphql-boolean-value" },
558
572
{ "include" : " #graphql-null-value" },
You can’t perform that action at this time.
0 commit comments