From e60d08192762a72a1da008fd8b2a528ceee115f7 Mon Sep 17 00:00:00 2001 From: "Nils \"Linkpy\" Reid" Date: Wed, 28 Oct 2020 15:16:03 +0100 Subject: [PATCH] Fixed the syntax of the escaped characters in strings (#247) --- syntaxes/GDScript.tmLanguage.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syntaxes/GDScript.tmLanguage.json b/syntaxes/GDScript.tmLanguage.json index ad40e90..0a8af9a 100644 --- a/syntaxes/GDScript.tmLanguage.json +++ b/syntaxes/GDScript.tmLanguage.json @@ -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"