Skip to content

Commit

Permalink
Fix escape characters within textblock
Browse files Browse the repository at this point in the history
Signed-off-by: Hope Hadfield <[email protected]>
  • Loading branch information
hopehadfield authored and rgrunber committed Dec 5, 2023
1 parent c2f5a6a commit f09b712
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions language-support/java/java.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -1596,11 +1596,7 @@
"name": "string.quoted.triple.java",
"patterns": [
{
"match": "\\\\\"\"\"",
"name": "constant.character.escape.java"
},
{
"match": "\\\\.",
"match": "(\\\\\"\"\")(?!\")|(\\\\.)",
"name": "constant.character.escape.java"
}
]
Expand Down

0 comments on commit f09b712

Please sign in to comment.