tm-grammars 1.15.1 → 1.15.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
@@ -119,7 +119,7 @@ import { grammars } from 'tm-grammars'
119
119
  | `jssm` | `fsl` | [StoneCypher/sublime-jssm](https://github.com/StoneCypher/sublime-jssm/blob/2be02a59d284229bbbfb3dc6c2bdcec9b2c263ef/jssm.tmLanguage) | [MIT](https://raw.githubusercontent.com/StoneCypher/sublime-jssm/master/LICENSE) | | 2.79 kB |
120
120
  | `jsx` | | [microsoft/vscode](https://github.com/microsoft/vscode/blob/35d97bc7e439fce0f50f42074041ab2d8571b20a/extensions/javascript/syntaxes/JavaScriptReact.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | | 173.35 kB |
121
121
  | `julia` | `jl` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/5c213a1e84928c7a7d11ca5b282ca602d40c1352/extensions/julia/syntaxes/julia.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | `cpp` `python` `javascript` `r` `sql` | 32.82 kB |
122
- | `kotlin` | `kt` `kts` | [fwcd/vscode-kotlin](https://github.com/fwcd/vscode-kotlin/blob/bb71d917dd97b756d45f2594346efe3d70a15060/syntaxes/kotlin.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/fwcd/vscode-kotlin/main/LICENSE) | | 8.22 kB |
122
+ | `kotlin` | `kt` `kts` | [fwcd/vscode-kotlin](https://github.com/fwcd/vscode-kotlin/blob/626e20d5c51a4379c4c0ee293aa89e58b5232aec/syntaxes/kotlin.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/fwcd/vscode-kotlin/main/LICENSE) | | 8.21 kB |
123
123
  | `kusto` | `kql` | [rosshamish/kuskus](https://github.com/rosshamish/kuskus/blob/6e6deead4af243432902869e1767df8a612cffe1/kusto-syntax-highlighting/syntaxes/kusto.tmLanguage.json) | | | 19.60 kB |
124
124
  | `latex` | | [microsoft/vscode](https://github.com/microsoft/vscode/blob/ed4e6eda599f37bac9a11952403a6e63fd4f5a4d/extensions/latex/syntaxes/LaTeX.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | `tex` `shellscript` `css` `gnuplot` `haskell` `html` `java` `julia` `javascript` `lua` `python` `ruby` `rust` `typescript` `xml` `yaml` `scala` | 53.80 kB |
125
125
  | `lean` | `lean4` | [leanprover/vscode-lean4](https://github.com/leanprover/vscode-lean4/blob/2255bc20c9d28d868d04fb91428652a95cc87a92/vscode-lean4/syntaxes/lean4.json) | [Apache-2.0](https://raw.githubusercontent.com/leanprover/vscode-lean4/master/LICENSE) | | 3.96 kB |
@@ -71,7 +71,7 @@
71
71
  "class-declaration": {
72
72
  "captures": {
73
73
  "1": {
74
- "name": "storage.type.class.kotlin"
74
+ "name": "keyword.hard.class.kotlin"
75
75
  },
76
76
  "2": {
77
77
  "name": "entity.name.type.class.kotlin"
@@ -267,7 +267,7 @@
267
267
  "function": {
268
268
  "captures": {
269
269
  "1": {
270
- "name": "storage.type.function.kotlin"
270
+ "name": "keyword.hard.fun.kotlin"
271
271
  },
272
272
  "2": {
273
273
  "patterns": [
@@ -312,7 +312,7 @@
312
312
  "begin": "\\b(import)\\b\\s*",
313
313
  "beginCaptures": {
314
314
  "1": {
315
- "name": "storage.type.import.kotlin"
315
+ "name": "keyword.soft.kotlin"
316
316
  }
317
317
  },
318
318
  "contentName": "entity.name.package.kotlin",
@@ -380,7 +380,7 @@
380
380
  "object": {
381
381
  "captures": {
382
382
  "1": {
383
- "name": "storage.type.object.kotlin"
383
+ "name": "keyword.hard.object.kotlin"
384
384
  },
385
385
  "2": {
386
386
  "name": "entity.name.type.object.kotlin"
@@ -424,7 +424,7 @@
424
424
  "begin": "\\b(package)\\b\\s*",
425
425
  "beginCaptures": {
426
426
  "1": {
427
- "name": "storage.type.package.kotlin"
427
+ "name": "keyword.hard.package.kotlin"
428
428
  }
429
429
  },
430
430
  "contentName": "entity.name.package.kotlin",
@@ -449,7 +449,7 @@
449
449
  "name": "variable.language.this.kotlin"
450
450
  },
451
451
  "soft-keywords": {
452
- "match": "\\b(catch|finally|field)\\b",
452
+ "match": "\\b(init|catch|finally|field)\\b",
453
453
  "name": "keyword.soft.kotlin"
454
454
  },
455
455
  "string": {
@@ -517,7 +517,7 @@
517
517
  "type-alias": {
518
518
  "captures": {
519
519
  "1": {
520
- "name": "storage.type.alias.kotlin"
520
+ "name": "keyword.hard.typealias.kotlin"
521
521
  },
522
522
  "2": {
523
523
  "name": "entity.name.type.kotlin"
@@ -563,7 +563,7 @@
563
563
  "variable-declaration": {
564
564
  "captures": {
565
565
  "1": {
566
- "name": "storage.type.variable.kotlin"
566
+ "name": "keyword.hard.kotlin"
567
567
  },
568
568
  "2": {
569
569
  "patterns": [
package/index.js CHANGED
@@ -1567,18 +1567,18 @@ export const grammars = [
1567
1567
  'kt',
1568
1568
  'kts',
1569
1569
  ],
1570
- byteSize: 8421,
1570
+ byteSize: 8409,
1571
1571
  categories: [
1572
1572
  'general',
1573
1573
  ],
1574
1574
  displayName: 'Kotlin',
1575
- lastUpdate: '2024-01-15T16:41:17Z',
1575
+ lastUpdate: '2024-02-06T09:51:18Z',
1576
1576
  license: 'MIT',
1577
1577
  licenseUrl: 'https://raw.githubusercontent.com/fwcd/vscode-kotlin/main/LICENSE',
1578
1578
  name: 'kotlin',
1579
1579
  scopeName: 'source.kotlin',
1580
- sha: 'bb71d917dd97b756d45f2594346efe3d70a15060',
1581
- source: 'https://github.com/fwcd/vscode-kotlin/blob/bb71d917dd97b756d45f2594346efe3d70a15060/syntaxes/kotlin.tmLanguage.json',
1580
+ sha: '626e20d5c51a4379c4c0ee293aa89e58b5232aec',
1581
+ source: 'https://github.com/fwcd/vscode-kotlin/blob/626e20d5c51a4379c4c0ee293aa89e58b5232aec/syntaxes/kotlin.tmLanguage.json',
1582
1582
  },
1583
1583
  {
1584
1584
  aliases: [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tm-grammars",
3
3
  "type": "module",
4
- "version": "1.15.1",
4
+ "version": "1.15.2",
5
5
  "description": "Collecton of TextMate grammars in JSON",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",