Skip to content

Commit 15ddbfe

Browse files
hopehadfieldrgrunber
authored andcommitted
Add textblock highlight support
1 parent be72f4b commit 15ddbfe

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

language-support/java/java.tmLanguage.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1571,6 +1571,31 @@
15711571
},
15721572
"strings": {
15731573
"patterns": [
1574+
{
1575+
"begin": "\"\"\"",
1576+
"beginCaptures": {
1577+
"0": {
1578+
"name": "punctuation.definition.string.begin.java"
1579+
}
1580+
},
1581+
"end": "\"\"\"",
1582+
"endCaptures": {
1583+
"0": {
1584+
"name": "punctuation.definition.string.end.java"
1585+
}
1586+
},
1587+
"name": "string.quoted.triple.java",
1588+
"patterns": [
1589+
{
1590+
"match": "\\\\\"\"\"",
1591+
"name": "constant.character.escape.java"
1592+
},
1593+
{
1594+
"match": "\\\\.",
1595+
"name": "constant.character.escape.java"
1596+
}
1597+
]
1598+
},
15741599
{
15751600
"begin": "\"",
15761601
"beginCaptures": {

0 commit comments

Comments
 (0)