From ca0455e8ee90df61e2dece4a6d569463792dd5a4 Mon Sep 17 00:00:00 2001 From: Damian Tarnawski Date: Sat, 4 May 2024 23:02:05 +0200 Subject: Add `\e` to allowed escape sequences in strings --- editors/vscode/syntaxes/odin.tmLanguage.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editors') diff --git a/editors/vscode/syntaxes/odin.tmLanguage.json b/editors/vscode/syntaxes/odin.tmLanguage.json index 3434596..d9349b9 100644 --- a/editors/vscode/syntaxes/odin.tmLanguage.json +++ b/editors/vscode/syntaxes/odin.tmLanguage.json @@ -606,7 +606,7 @@ }, { "name": "constant.character.escape.odin", - "match": "\\\\(\\\\|[abfnrutv''\"]|x\\h{2}|u\\h{4}|U\\h{8}|[0-7]{3})" + "match": "\\\\(\\\\|[abefnrutv''\"]|x\\h{2}|u\\h{4}|U\\h{8}|[0-7]{3})" }, { "name": "invalid.illegal.unknown-escape.odin", -- cgit v1.2.3