diff options
Diffstat (limited to 'editors')
| -rw-r--r-- | editors/vscode/syntaxes/odin.tmLanguage.json | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editors/vscode/syntaxes/odin.tmLanguage.json b/editors/vscode/syntaxes/odin.tmLanguage.json index b0090c7..04c5c20 100644 --- a/editors/vscode/syntaxes/odin.tmLanguage.json +++ b/editors/vscode/syntaxes/odin.tmLanguage.json @@ -549,6 +549,10 @@ "string-escaped-char": { "patterns": [ { + "name": "constant.character.escape.ansi-color-sequence.odin", + "match": "\\\\(x1b|e|033)\\[[0-9;]*m" + }, + { "name": "constant.character.escape.odin", "match": "\\\\(\\\\|[abfnrutv''\"]|x\\h{2}|u\\h{4}|U\\h{8}|[0-7]{3})" }, |