lahodaj commented on code in PR #6946: URL: https://github.com/apache/netbeans/pull/6946#discussion_r1449223637
##########
java/java.lsp.server/vscode/syntaxes/java.tmLanguage.json:
##########
@@ -1571,42 +1582,45 @@
},
"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"
+ }
+ ]
+ },
{
"begin": "\"",
"beginCaptures": {
"0": {
- "name":
"punctuation.definition.string.begin.java string.quoted.double.java"
+ "name":
"punctuation.definition.string.begin.java"
}
},
"end": "\"",
"endCaptures": {
"0": {
- "name":
"punctuation.definition.string.end.java string.quoted.double.java"
+ "name":
"punctuation.definition.string.end.java"
}
},
+ "name": "string.quoted.double.java",
"patterns": [
- {
Review Comment:
Sorry, not sure about this removal. Please see:
https://github.com/apache/netbeans/pull/6745
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
