🐐 Single quote string in vscode extension

This commit is contained in:
2026-03-31 21:46:19 +02:00
parent e845cb62c1
commit 731d50b2a8

View File

@@ -60,13 +60,28 @@
]
},
"strings": {
"name": "string.quoted.double.cent",
"begin": "\"",
"end": "\"",
"patterns": [
{
"name": "constant.character.escape.cent",
"match": "\\\\."
"name": "string.quoted.double.cent",
"begin": "\"",
"end": "\"",
"patterns": [
{
"name": "constant.character.escape.cent",
"match": "\\\\."
}
]
},
{
"name": "string.quoted.single.cent",
"begin": "'",
"end": "'",
"patterns": [
{
"name": "constant.character.escape.cent",
"match": "\\\\."
}
]
}
]
},