tm-grammars 1.3.1 → 1.3.2

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 CHANGED
@@ -157,7 +157,7 @@ import { grammars } from 'tm-grammars'
157
157
  | `rust` | `rs` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/35d97bc7e439fce0f50f42074041ab2d8571b20a/extensions/rust/syntaxes/rust.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | | 16.77 kB |
158
158
  | `sas` | | [rpardee/sas](https://github.com/rpardee/sas/blob/49f6e733c6c0b918a2a825ca2f63dba704f3e8c0/syntaxes/sas.tmLanguage) | [MIT](https://raw.githubusercontent.com/rpardee/sas/master/LICENSE) | `sql` | 9.31 kB |
159
159
  | `sass` | | [TheRealSyler/vscode-sass-indented](https://github.com/TheRealSyler/vscode-sass-indented/blob/7b0bd6bbbb768c0cf21b2aa0899cb872ee42fd50/syntaxes/sass.tmLanguage.json) | [NOASSERTION](https://raw.githubusercontent.com/TheRealSyler/vscode-sass-indented/master/LICENSE) | | 8.84 kB |
160
- | `scala` | | [scala/vscode-scala-syntax](https://github.com/scala/vscode-scala-syntax/blob/d4207351671160b65ec05a43f5452ad8c9138950/syntaxes/Scala.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/scala/vscode-scala-syntax/main/LICENSE.md) | | 26.72 kB |
160
+ | `scala` | | [scala/vscode-scala-syntax](https://github.com/scala/vscode-scala-syntax/blob/0ee961a552679291fdf41f4070c2766da6b7e0fb/syntaxes/Scala.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/scala/vscode-scala-syntax/main/LICENSE.md) | | 26.79 kB |
161
161
  | `scheme` | | [sjhuangx/vscode-scheme](https://github.com/sjhuangx/vscode-scheme/blob/4e21683666e1e2edfa21d040ecd427f628e7b5ff/syntaxes/scheme.tmLanguage) | [MIT](https://raw.githubusercontent.com/sjhuangx/vscode-scheme/master/LICENSE.md) | | 8.35 kB |
162
162
  | `scss` | | [microsoft/vscode](https://github.com/microsoft/vscode/blob/cf8d61ebd2f022f4ce8280171f0360d1fe0a206d/extensions/scss/syntaxes/scss.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | `css` | 26.21 kB |
163
163
  | `shaderlab` | `shader` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/8fdf170a0850c1cc027382f31650aaf300d3ae2a/extensions/shaderlab/syntaxes/shaderlab.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | `hlsl` | 5.83 kB |
@@ -284,6 +284,10 @@
284
284
  "match": "(\\.[0-9][0-9_]*)([eE](\\+|-)?[0-9][0-9_]*)?[LlFfDd]?\\b",
285
285
  "name": "constant.numeric.scala"
286
286
  },
287
+ {
288
+ "match": "\\b0[bB][01]([01_]*[01])?[Ll]?\\b",
289
+ "name": "constant.numeric.scala"
290
+ },
287
291
  {
288
292
  "match": "\\b(this|super)\\b",
289
293
  "name": "variable.language.scala"
package/index.js CHANGED
@@ -2205,15 +2205,15 @@ export const grammars = [
2205
2205
  source: 'https://github.com/TheRealSyler/vscode-sass-indented/blob/7b0bd6bbbb768c0cf21b2aa0899cb872ee42fd50/syntaxes/sass.tmLanguage.json',
2206
2206
  },
2207
2207
  {
2208
- byteSize: 27359,
2208
+ byteSize: 27437,
2209
2209
  displayName: 'Scala',
2210
- lastUpdate: '2024-02-13T11:53:11Z',
2210
+ lastUpdate: '2024-02-16T10:50:59Z',
2211
2211
  license: 'MIT',
2212
2212
  licenseUrl: 'https://raw.githubusercontent.com/scala/vscode-scala-syntax/main/LICENSE.md',
2213
2213
  name: 'scala',
2214
2214
  scopeName: 'source.scala',
2215
- sha: 'd4207351671160b65ec05a43f5452ad8c9138950',
2216
- source: 'https://github.com/scala/vscode-scala-syntax/blob/d4207351671160b65ec05a43f5452ad8c9138950/syntaxes/Scala.tmLanguage.json',
2215
+ sha: '0ee961a552679291fdf41f4070c2766da6b7e0fb',
2216
+ source: 'https://github.com/scala/vscode-scala-syntax/blob/0ee961a552679291fdf41f4070c2766da6b7e0fb/syntaxes/Scala.tmLanguage.json',
2217
2217
  },
2218
2218
  {
2219
2219
  byteSize: 8548,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tm-grammars",
3
3
  "type": "module",
4
- "version": "1.3.1",
4
+ "version": "1.3.2",
5
5
  "packageManager": "pnpm@8.15.1",
6
6
  "description": "Collecton of TextMate grammars in JSON",
7
7
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",