소스 검색

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

Nils "Linkpy" Reid 4 년 전
부모
커밋
e60d081927
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      syntaxes/GDScript.tmLanguage.json

+ 2 - 2
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"