PluginProbe
Code Block Pro – Beautiful Syntax Highlighting / 1.13.0
Code Block Pro – Beautiful Syntax Highlighting v1.13.0
1.27.1 1.27.2 1.27.3 1.27.4 1.27.5 1.27.6 1.27.7 1.28.0 1.3.0 1.4.0 1.5.0 1.5.1 1.5.2 1.6.0 1.7.0 1.8.0 1.9.0 1.9.1 1.9.2 1.9.3 trunk 1.1.0 1.10.0 1.11.0 1.11.1 All 63 releases
← All changes | build/shiki/languages/java.tmLanguage.json +2 -37 1.27.61.13.0 View file →
@@ -1,11 +1,11 @@
1 1 {
2 2 "information_for_contributors": [
3 - "This file has been converted from https://github.com/redhat-developer/vscode-java/blob/master/language-support/java/java.tmLanguage.json",
3 + "This file has been converted from https://github.com/atom/language-java/blob/master/grammars/java.cson",
4 4 "If you want to provide a fix or improvement, please create a pull request against the original repository.",
5 5 "Once accepted there, we are happy to receive an update request."
6 6 ],
7 - "version": "https://github.com/redhat-developer/vscode-java/commit/f09b712f5d6d6339e765f58c8dfab3f78a378183",
7 + "version": "https://github.com/atom/language-java/commit/29f977dc42a7e2568b39bb6fb34c4ef108eb59b3",
8 8 "name": "java",
9 9 "scopeName": "source.java",
10 10 "patterns": [
11 11 {
@@ -1378,19 +1378,8 @@
1378 1378 },
1379 1379 "properties": {
1380 1380 "patterns": [
1381 1381 {
1382 - "match": "(\\.)\\s*(new)",
1383 - "captures": {
1384 - "1": {
1385 - "name": "punctuation.separator.period.java"
1386 - },
1387 - "2": {
1388 - "name": "keyword.control.new.java"
1389 - }
1390 - }
1391 - },
1392 - {
1393 1382 "match": "(\\.)\\s*([a-zA-Z_$][\\w$]*)(?=\\s*\\.\\s*[a-zA-Z_$][\\w$]*)",
1394 1383 "captures": {
1395 1384 "1": {
1396 1385 "name": "punctuation.separator.period.java"
@@ -1582,29 +1571,8 @@
1582 1571 },
1583 1572 "strings": {
1584 1573 "patterns": [
1585 1574 {
1586 - "begin": "\"\"\"",
1587 - "beginCaptures": {
1588 - "0": {
1589 - "name": "punctuation.definition.string.begin.java"
1590 - }
1591 - },
1592 - "end": "\"\"\"",
1593 - "endCaptures": {
1594 - "0": {
1595 - "name": "punctuation.definition.string.end.java"
1596 - }
1597 - },
1598 - "name": "string.quoted.triple.java",
1599 - "patterns": [
1600 - {
1601 - "match": "(\\\\\"\"\")(?!\")|(\\\\.)",
1602 - "name": "constant.character.escape.java"
1603 - }
1604 - ]
1605 - },
1606 - {
1607 1575 "begin": "\"",
1608 1576 "beginCaptures": {
1609 1577 "0": {
1610 1578 "name": "punctuation.definition.string.begin.java"
@@ -1663,11 +1631,8 @@
1663 1631 },
1664 1632 {
1665 1633 "match": "[a-zA-Z$_][\\.a-zA-Z0-9$_]*",
1666 1634 "name": "storage.type.java"
1667 - },
1668 - {
1669 - "include": "#comments"
1670 1635 }
1671 1636 ]
1672 1637 },
1673 1638 "try-catch-finally": {