vscode-tmlanguage icon indicating copy to clipboard operation
vscode-tmlanguage copied to clipboard

Syntax highlighting for TextMate/SublimeText language definitions

Results 8 vscode-tmlanguage issues
Sort by recently updated
recently updated
newest added

https://github.com/pedro-w/vscode-tmlanguage/commit/0aa687c4e1a60ce5e186461c598912531a84ae14 changed the custom `TextMate YAML` highlighting to just normal `YAML` highlighting Before: ![Image](https://github.com/user-attachments/assets/0ce26ece-940f-4262-9834-4a65553512c6) Now: ![Image](https://github.com/user-attachments/assets/2eba1e94-b189-4c3f-ae82-aa79d8cfc3d7)

Please publish the extension on https://open-vsx.org/ so we can install it with ease in VSCodium

![image](https://user-images.githubusercontent.com/39886505/189538090-3e1fdcb3-1fbd-4b35-81e3-97882702bd33.png) ``` 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` ![image](https://user-images.githubusercontent.com/39886505/189538035-31f7bb64-daee-4c1b-b02d-bc12e1023949.png) ![image](https://user-images.githubusercontent.com/39886505/189538042-16839de3-6be7-455e-97f3-f3d2e08f66ce.png)

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....