vscode-tmlanguage
vscode-tmlanguage copied to clipboard
Syntax highlighting for TextMate/SublimeText language definitions
https://github.com/pedro-w/vscode-tmlanguage/commit/0aa687c4e1a60ce5e186461c598912531a84ae14 changed the custom `TextMate YAML` highlighting to just normal `YAML` highlighting Before:  Now: 
Please publish the extension on https://open-vsx.org/ so we can install it with ease in VSCodium
 ``` foo: name: some.scope.lang begin: "(?i)([a-z][a-z0-9_]*)\\s*\\(" end: "\\)" patterns: - include: "#baz" - include: "#bar" repository: ... ```
Since this extension does not provide a formatting service, I tried to use the default VsCode JSON formatter. I added the following to setting.json and it still does not work:...
Should not scope to `invalid.illegal.unrecognized.yaml-tmlanguage`  
For example, this chunk of JSON is not valid: ```json "patterns": [ { "include": "#keywords" }, { "include": "#strings" },
I assume the rules are just in the wrong order in the patterns array. ```yaml patterns: - include: #should highlight as comment - match: | (?x) ( this|that # should...
When writing JSON grammars, the "match", "begin", and "end" regex fields do not ignore open and unmatched braces within the regex, and those braces bleed out of the JSON value....