Does this issue occur when all extensions are disabled?: Yes
- VS Code Version: 1.79
- OS Version: Windows
Steps to Reproduce:
The file https://github.com/microsoft/vscode/blob/main/extensions/xml/syntaxes/xml.tmLanguage.json contains a syntax/schema/config error. The "end" and "name" property are added add the wrong level.
|
"comments": { |
|
"patterns": [ |
|
{ |
|
"begin": "<%--", |
|
"captures": { |
|
"0": { |
|
"name": "punctuation.definition.comment.xml" |
|
}, |
|
"end": "--%>", |
|
"name": "comment.block.xml" |
|
} |
|
}, |
|
{ |
This was discovered when trying to parse the TextMate file using Eclipse TM4E.
Does this issue occur when all extensions are disabled?: Yes
Steps to Reproduce:
The file https://github.com/microsoft/vscode/blob/main/extensions/xml/syntaxes/xml.tmLanguage.json contains a syntax/schema/config error. The "end" and "name" property are added add the wrong level.
vscode/extensions/xml/syntaxes/xml.tmLanguage.json
Lines 352 to 364 in 7ff66b3
This was discovered when trying to parse the TextMate file using Eclipse TM4E.