🐐 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,6 +60,8 @@
]
},
"strings": {
"patterns": [
{
"name": "string.quoted.double.cent",
"begin": "\"",
"end": "\"",
@@ -70,6 +72,19 @@
}
]
},
{
"name": "string.quoted.single.cent",
"begin": "'",
"end": "'",
"patterns": [
{
"name": "constant.character.escape.cent",
"match": "\\\\."
}
]
}
]
},
"variables": {
"patterns": [
{