tm-grammars 1.23.25 → 1.23.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/grammars/vue.json +8 -13
- package/index.js +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -226,7 +226,7 @@ import { grammars } from 'tm-grammars'
|
|
|
226
226
|
| `verilog` | | [mshr-h/vscode-verilog-hdl-support](https://github.com/mshr-h/vscode-verilog-hdl-support/blob/26cc4a3ec01b12aea5b8ffb7edeee3373eb71d77/syntaxes/verilog.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/mshr-h/vscode-verilog-hdl-support/main/LICENSE) | [buymeacoffee.com](https://www.buymeacoffee.com/mshr.h) | | 5.60 kB |
|
|
227
227
|
| `vhdl` | | [jonasjj/awesome-vhdl](https://github.com/jonasjj/awesome-vhdl/blob/b787559a47d64c7baf2a9ac0f4cac8e2e721cddc/syntaxes/vhdl.tmLanguage) | [MIT](https://raw.githubusercontent.com/jonasjj/awesome-vhdl/master/LICENSE.txt) | | | 22.98 kB |
|
|
228
228
|
| `viml` | `vim` `vimscript` | [dunstontc/viml](https://github.com/dunstontc/viml/blob/8762570fc7d6f1009a3c93efd2a337330d88b88e/syntaxes/viml.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/dunstontc/viml/master/LICENSE) | | | 19.58 kB |
|
|
229
|
-
| `vue` | | [vuejs/language-tools](https://github.com/vuejs/language-tools/blob/
|
|
229
|
+
| `vue` | | [vuejs/language-tools](https://github.com/vuejs/language-tools/blob/d94c100f416f5dbe9adfbdb24305537ee9cc326e/extensions/vscode/syntaxes/vue.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/vuejs/language-tools/master/LICENSE) | [GitHub Sponsors: **@johnsoncodehk**](https://github.com/sponsors/johnsoncodehk) | `markdown` `pug` `stylus` `sass` `css` `scss` `less` `javascript` `typescript` `jsx` `tsx` `coffee` `json` `jsonc` `json5` `yaml` `toml` `graphql` `html-derivative` `html` `markdown-vue` `vue-directives` `vue-interpolations` `vue-sfc-style-variable-injection` | 17.09 kB |
|
|
230
230
|
| `vue-html` | | [vuejs/vetur](https://github.com/vuejs/vetur/blob/53ee52746b1f26f44391c3764bc7bd06d4ddaa46/syntaxes/vue-html.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/vuejs/vetur/master/LICENSE) | [GitHub Sponsors: **@octref**](https://github.com/sponsors/octref) [IssueHunt: **vuejs/vetur**](https://issuehunt.io/r/vuejs/vetur) | `vue` `javascript` | 8.04 kB |
|
|
231
231
|
| `vyper` | `vy` | [tintinweb/vscode-vyper](https://github.com/tintinweb/vscode-vyper/blob/3df08ea46fc7df1a5e7f35365e615624849d1c1b/syntaxes/vyper.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/tintinweb/vscode-vyper/master/LICENSE) | | | 71.02 kB |
|
|
232
232
|
| `wasm` | | [wasmerio/vscode-wasm](https://github.com/wasmerio/vscode-wasm/blob/9d0ace1ff113f4a3e95797675039cd94ec257078/syntaxes/wat.json) | [MIT](https://raw.githubusercontent.com/wasmerio/vscode-wasm/master/LICENSE) | | | 11.18 kB |
|
package/grammars/vue.json
CHANGED
|
@@ -1016,19 +1016,19 @@
|
|
|
1016
1016
|
"include": "#vue-directives-control"
|
|
1017
1017
|
},
|
|
1018
1018
|
{
|
|
1019
|
-
"include": "#vue-directives-
|
|
1019
|
+
"include": "#vue-directives-generic-attr"
|
|
1020
1020
|
},
|
|
1021
1021
|
{
|
|
1022
|
-
"include": "#vue-directives-
|
|
1022
|
+
"include": "#vue-directives-style-attr"
|
|
1023
1023
|
},
|
|
1024
1024
|
{
|
|
1025
|
-
"include": "#vue-directives-
|
|
1025
|
+
"include": "#vue-directives-original"
|
|
1026
1026
|
}
|
|
1027
1027
|
]
|
|
1028
1028
|
},
|
|
1029
1029
|
"vue-directives-control": {
|
|
1030
|
-
"begin": "(v-for)|(v-(?:if|else-if|else))",
|
|
1031
|
-
"
|
|
1030
|
+
"begin": "(?:(v-for)|(v-(?:if|else-if|else)))(?==)",
|
|
1031
|
+
"beginCaptures": {
|
|
1032
1032
|
"1": {
|
|
1033
1033
|
"name": "keyword.control.loop.vue"
|
|
1034
1034
|
},
|
|
@@ -1036,7 +1036,7 @@
|
|
|
1036
1036
|
"name": "keyword.control.conditional.vue"
|
|
1037
1037
|
}
|
|
1038
1038
|
},
|
|
1039
|
-
"end": "(?=\\s
|
|
1039
|
+
"end": "(?=\\s*[^=\\s])",
|
|
1040
1040
|
"name": "meta.attribute.directive.control.vue",
|
|
1041
1041
|
"patterns": [
|
|
1042
1042
|
{
|
|
@@ -1100,7 +1100,7 @@
|
|
|
1100
1100
|
},
|
|
1101
1101
|
"vue-directives-generic-attr": {
|
|
1102
1102
|
"begin": "\\b(generic)\\s*(=)",
|
|
1103
|
-
"
|
|
1103
|
+
"beginCaptures": {
|
|
1104
1104
|
"1": {
|
|
1105
1105
|
"name": "entity.other.attribute-name.html.vue"
|
|
1106
1106
|
},
|
|
@@ -1184,11 +1184,6 @@
|
|
|
1184
1184
|
}
|
|
1185
1185
|
},
|
|
1186
1186
|
"end": "(?=\\s*[^=\\s])",
|
|
1187
|
-
"endCaptures": {
|
|
1188
|
-
"1": {
|
|
1189
|
-
"name": "punctuation.definition.string.end.html.vue"
|
|
1190
|
-
}
|
|
1191
|
-
},
|
|
1192
1187
|
"name": "meta.attribute.directive.vue",
|
|
1193
1188
|
"patterns": [
|
|
1194
1189
|
{
|
|
@@ -1207,7 +1202,7 @@
|
|
|
1207
1202
|
},
|
|
1208
1203
|
"vue-directives-style-attr": {
|
|
1209
1204
|
"begin": "\\b(style)\\s*(=)",
|
|
1210
|
-
"
|
|
1205
|
+
"beginCaptures": {
|
|
1211
1206
|
"1": {
|
|
1212
1207
|
"name": "entity.other.attribute-name.html.vue"
|
|
1213
1208
|
},
|
package/index.js
CHANGED
|
@@ -4241,7 +4241,7 @@ export const grammars = [
|
|
|
4241
4241
|
sourceApi: 'https://api.github.com/repos/dunstontc/viml/contents/syntaxes/viml.tmLanguage.json?ref=8762570fc7d6f1009a3c93efd2a337330d88b88e',
|
|
4242
4242
|
},
|
|
4243
4243
|
{
|
|
4244
|
-
byteSize:
|
|
4244
|
+
byteSize: 17502,
|
|
4245
4245
|
categories: [
|
|
4246
4246
|
'web',
|
|
4247
4247
|
],
|
|
@@ -4279,15 +4279,15 @@ export const grammars = [
|
|
|
4279
4279
|
url: 'https://github.com/sponsors/johnsoncodehk',
|
|
4280
4280
|
},
|
|
4281
4281
|
],
|
|
4282
|
-
hash: '
|
|
4283
|
-
lastUpdate: '2025-
|
|
4282
|
+
hash: 'KHfEDoogCSYyexyR3IjXNHrvqyAJvnehsvIumJgQqqw',
|
|
4283
|
+
lastUpdate: '2025-06-02T14:48:23Z',
|
|
4284
4284
|
license: 'MIT',
|
|
4285
4285
|
licenseUrl: 'https://raw.githubusercontent.com/vuejs/language-tools/master/LICENSE',
|
|
4286
4286
|
name: 'vue',
|
|
4287
4287
|
scopeName: 'source.vue',
|
|
4288
|
-
sha: '
|
|
4289
|
-
source: 'https://github.com/vuejs/language-tools/blob/
|
|
4290
|
-
sourceApi: 'https://api.github.com/repos/vuejs/language-tools/contents/extensions/vscode/syntaxes/vue.tmLanguage.json?ref=
|
|
4288
|
+
sha: 'd94c100f416f5dbe9adfbdb24305537ee9cc326e',
|
|
4289
|
+
source: 'https://github.com/vuejs/language-tools/blob/d94c100f416f5dbe9adfbdb24305537ee9cc326e/extensions/vscode/syntaxes/vue.tmLanguage.json',
|
|
4290
|
+
sourceApi: 'https://api.github.com/repos/vuejs/language-tools/contents/extensions/vscode/syntaxes/vue.tmLanguage.json?ref=d94c100f416f5dbe9adfbdb24305537ee9cc326e',
|
|
4291
4291
|
},
|
|
4292
4292
|
{
|
|
4293
4293
|
byteSize: 8233,
|