Fixed the syntax of the escaped characters in strings (#247)

This commit is contained in:
Nils "Linkpy" Reid
2020-10-28 15:16:03 +01:00
committed by GitHub
parent 8115fba367
commit e60d081927

View File

@@ -45,7 +45,7 @@
"end": "\"",
"patterns": [
{ "name": "constant.character.escape.untitled",
"match": "\\."
"match": "\\\\."
}
],
"name": "string.quoted.double.gdscript"
@@ -55,7 +55,7 @@
"end": "'",
"patterns": [
{ "name": "constant.character.escape.untitled",
"match": "\\."
"match": "\\\\."
}
],
"name": "string.quoted.single.gdscript"