Skip to content

Commit

Permalink
Add textblock highlight support
Browse files Browse the repository at this point in the history
  • Loading branch information
hopehadfield authored and rgrunber committed Jul 14, 2023
1 parent be72f4b commit 15ddbfe
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions language-support/java/java.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -1571,6 +1571,31 @@
},
"strings": {
"patterns": [
{
"begin": "\"\"\"",
"beginCaptures": {
"0": {
"name": "punctuation.definition.string.begin.java"
}
},
"end": "\"\"\"",
"endCaptures": {
"0": {
"name": "punctuation.definition.string.end.java"
}
},
"name": "string.quoted.triple.java",
"patterns": [
{
"match": "\\\\\"\"\"",
"name": "constant.character.escape.java"
},
{
"match": "\\\\.",
"name": "constant.character.escape.java"
}
]
},
{
"begin": "\"",
"beginCaptures": {
Expand Down

0 comments on commit 15ddbfe

Please sign in to comment.