Merge pull request 'feat(syntax): add escaped-quoted-strings token to def syntax' (#35) from new_completions into main
build_and_puplish.yml / build_and_publish (release) Successful in 7m35s

Reviewed-on: #35
This commit was merged in pull request #35.
This commit is contained in:
2026-09-04 11:39:08 +00:00
+29 -1
View File
@@ -5,6 +5,9 @@
{ {
"include": "#comment" "include": "#comment"
}, },
{
"include": "#escaped-quoted-strings"
},
{ {
"include": "#strings" "include": "#strings"
}, },
@@ -28,6 +31,31 @@
} }
], ],
"repository": { "repository": {
"escaped-quoted-strings": {
"name": "string.quoted.double.def",
"begin": "\\\\\"",
"end": "\\\\\"",
"beginCaptures": {
"0": {
"name": "punctuation.definition.string.begin.def"
}
},
"endCaptures": {
"0": {
"name": "punctuation.definition.string.end.def"
}
},
"patterns": [
{
"name": "constant.character.escape.def",
"match": "\\\\."
},
{
"name": "variable.other.property",
"match": "\\$[_a-zA-Z][_a-zA-Z0-9]*(\\(\\$?[_a-zA-Z][_a-zA-Z0-9]*(,\\$?[_a-zA-Z][_a-zA-Z0-9]*)*\\))?"
}
]
},
"keywords": { "keywords": {
"patterns": [ "patterns": [
{ {
@@ -151,4 +179,4 @@
} }
}, },
"scopeName": "source.def" "scopeName": "source.def"
} }