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