Skip to content

Commit

Permalink
🤖: update grammars
Browse files Browse the repository at this point in the history
  • Loading branch information
octref committed Nov 6, 2023
1 parent e8e0367 commit f4a5683
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/shiki/languages/csharp.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
"include": "#try-statement"
},
{
"include": "#checked-unchecked-statement"
"include": "#expression-operator-expression"
},
{
"include": "#context-control-statement"
Expand Down Expand Up @@ -3820,7 +3820,7 @@
},
"char-character-escape": {
"name": "constant.character.escape.cs",
"match": "\\\\(['\"\\\\0abfnrtv]|x[0-9a-fA-F]{1,4}|u[0-9a-fA-F]{4})"
"match": "\\\\(x[0-9a-fA-F]{1,4}|u[0-9a-fA-F]{4}|.)"
},
"string-literal": {
"name": "string.quoted.double.cs",
Expand All @@ -3847,7 +3847,7 @@
},
"string-character-escape": {
"name": "constant.character.escape.cs",
"match": "\\\\(['\"\\\\0abfnrtv]|x[0-9a-fA-F]{1,4}|U[0-9a-fA-F]{8}|u[0-9a-fA-F]{4})"
"match": "\\\\(x[0-9a-fA-F]{1,4}|U[0-9a-fA-F]{8}|u[0-9a-fA-F]{4}|.)"
},
"verbatim-string-literal": {
"name": "string.quoted.double.cs",
Expand Down

0 comments on commit f4a5683

Please sign in to comment.