tm-grammars 1.23.14 → 1.23.15

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/NOTICE CHANGED
@@ -3233,7 +3233,7 @@ SPDX: MIT
3233
3233
  ---------------------------------------------------------------------------------------------------------
3234
3234
  MIT License
3235
3235
 
3236
- Copyright (c) 2024 Alex Kanunnikov
3236
+ Copyright (c) 2025 Alex Kanunnikov
3237
3237
 
3238
3238
  Permission is hereby granted, free of charge, to any person obtaining a copy
3239
3239
  of this software and associated documentation files (the "Software"), to deal
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) | | | 23.00 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.69 kB |
229
- | `vue` | | [vuejs/language-tools](https://github.com/vuejs/language-tools/blob/5f11c44dce3f49e2c5f0dae1f93d892164a1980e/extensions/vscode/syntaxes/vue.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/vuejs/language-tools/master/LICENSE) | [GitHub Sponsors: **@johnsoncodehk**](https://github.com/sponsors/johnsoncodehk) | `html` `markdown` `pug` `stylus` `sass` `css` `scss` `less` `javascript` `typescript` `jsx` `tsx` `coffee` `json` `jsonc` `json5` `yaml` `toml` `graphql` `html-derivative` `markdown-vue` `vue-directives` `vue-interpolations` `vue-sfc-style-variable-injection` | 17.06 kB |
229
+ | `vue` | | [vuejs/language-tools](https://github.com/vuejs/language-tools/blob/e8627588049742764b3b26ead7a2b95fec65cb4f/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.14 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.04 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
@@ -5,9 +5,6 @@
5
5
  {
6
6
  "include": "#vue-comments"
7
7
  },
8
- {
9
- "include": "text.html.basic#comment"
10
- },
11
8
  {
12
9
  "include": "#self-closing-tag"
13
10
  },
@@ -974,6 +971,16 @@
974
971
  "patterns": [
975
972
  {
976
973
  "include": "#vue-comments-key-value"
974
+ },
975
+ {
976
+ "begin": "<!--",
977
+ "captures": {
978
+ "0": {
979
+ "name": "punctuation.definition.comment.vue"
980
+ }
981
+ },
982
+ "end": "-->",
983
+ "name": "comment.block.vue"
977
984
  }
978
985
  ]
979
986
  },
package/index.js CHANGED
@@ -4036,13 +4036,12 @@ export const grammars = [
4036
4036
  source: 'https://github.com/dunstontc/viml/blob/8762570fc7d6f1009a3c93efd2a337330d88b88e/syntaxes/viml.tmLanguage.json',
4037
4037
  },
4038
4038
  {
4039
- byteSize: 17472,
4039
+ byteSize: 17553,
4040
4040
  categories: [
4041
4041
  'web',
4042
4042
  ],
4043
4043
  displayName: 'Vue',
4044
4044
  embedded: [
4045
- 'html',
4046
4045
  'markdown',
4047
4046
  'pug',
4048
4047
  'stylus',
@@ -4062,6 +4061,7 @@ export const grammars = [
4062
4061
  'toml',
4063
4062
  'graphql',
4064
4063
  'html-derivative',
4064
+ 'html',
4065
4065
  'markdown-vue',
4066
4066
  'vue-directives',
4067
4067
  'vue-interpolations',
@@ -4074,14 +4074,14 @@ export const grammars = [
4074
4074
  url: 'https://github.com/sponsors/johnsoncodehk',
4075
4075
  },
4076
4076
  ],
4077
- hash: 'Bnr1Z6ug6VNe2CW73WLxWQAYrGEY70kYOL_BlsMmJm4',
4078
- lastUpdate: '2024-12-20T20:08:46Z',
4077
+ hash: 'ZKZ366MOnSCRQxl41OCqWtp4mybcwyrwWGj5ZpJYEWY',
4078
+ lastUpdate: '2025-04-19T05:25:35Z',
4079
4079
  license: 'MIT',
4080
4080
  licenseUrl: 'https://raw.githubusercontent.com/vuejs/language-tools/master/LICENSE',
4081
4081
  name: 'vue',
4082
4082
  scopeName: 'source.vue',
4083
- sha: '5f11c44dce3f49e2c5f0dae1f93d892164a1980e',
4084
- source: 'https://github.com/vuejs/language-tools/blob/5f11c44dce3f49e2c5f0dae1f93d892164a1980e/extensions/vscode/syntaxes/vue.tmLanguage.json',
4083
+ sha: 'e8627588049742764b3b26ead7a2b95fec65cb4f',
4084
+ source: 'https://github.com/vuejs/language-tools/blob/e8627588049742764b3b26ead7a2b95fec65cb4f/extensions/vscode/syntaxes/vue.tmLanguage.json',
4085
4085
  },
4086
4086
  {
4087
4087
  byteSize: 8233,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tm-grammars",
3
3
  "type": "module",
4
- "version": "1.23.14",
4
+ "version": "1.23.15",
5
5
  "description": "Collecton of TextMate grammars in JSON",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",