Skip to content

Commit 79bb6bd

Browse files
feat: update Themes and Grammars [ci skip]
1 parent b941a45 commit 79bb6bd

File tree

9 files changed

+77
-35
lines changed

9 files changed

+77
-35
lines changed

packages/tm-grammars/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ import { grammars } from 'tm-grammars'
149149
| `nginx` | | [hangxingliu/vscode-nginx-conf-hint](https://github.com/hangxingliu/vscode-nginx-conf-hint/blob/49159c02fd09dce264ded7802c9499a0f09646f5/src/syntax/nginx.tmLanguage) | [GPL-3.0](https://raw.githubusercontent.com/hangxingliu/vscode-nginx-conf-hint/main/LICENSE) | | `lua` | 33.90 kB |
150150
| `nim` | | [pragmagic/vscode-nim](https://github.com/pragmagic/vscode-nim/blob/0272a0544ddf147fde98f8a8f2b624b7dcb19eb3/syntaxes/nim.json) | [NOASSERTION](https://raw.githubusercontent.com/pragmagic/vscode-nim/master/LICENSE) | | `c` `html` `xml` `javascript` `css` `glsl` `markdown` | 20.80 kB |
151151
| `nix` | | [nix-community/vscode-nix-ide](https://github.com/nix-community/vscode-nix-ide/blob/ac1ed65aa92655748200cd62bd54e5ca051781bc/syntaxes/nix.YAML-tmLanguage) | [MIT](https://raw.githubusercontent.com/nix-community/vscode-nix-ide/main/LICENSE) | [Open Collective: **nix-community**](https://opencollective.com/nix-community) | | 14.07 kB |
152-
| `nushell` | `nu` | [nushell/vscode-nushell-lang](https://github.com/nushell/vscode-nushell-lang/blob/63fcfaf32fe18db9f8bc75805117c2af3a896806/syntaxes/nushell.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/nushell/vscode-nushell-lang/main/LICENSE) | | | 18.12 kB |
152+
| `nushell` | `nu` | [nushell/vscode-nushell-lang](https://github.com/nushell/vscode-nushell-lang/blob/28ccc907ad4e6bccf252fba4c83cc7f4c00c2161/syntaxes/nushell.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/nushell/vscode-nushell-lang/main/LICENSE) | | | 18.40 kB |
153153
| `objective-c` | `objc` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/bd1abe08c38bb5deccf65610f8f3c03d2338d20d/extensions/objective-c/syntaxes/objective-c.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | | | 101.97 kB |
154154
| `objective-cpp` | | [microsoft/vscode](https://github.com/microsoft/vscode/blob/bd1abe08c38bb5deccf65610f8f3c03d2338d20d/extensions/objective-c/syntaxes/objective-c++.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | | | 165.07 kB |
155155
| `ocaml` | | [reasonml-editor/vscode-reasonml](https://github.com/reasonml-editor/vscode-reasonml/blob/14af625ec50ed9968b957b4d6336c5338d81af45/syntaxes/ocaml.json) | [Apache-2.0](https://raw.githubusercontent.com/reasonml-editor/vscode-reasonml/master/LICENSE) | | | 60.17 kB |

packages/tm-grammars/grammars/nushell.json

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,9 @@
334334
{
335335
"include": "#constant-value"
336336
},
337+
{
338+
"include": "#string-raw"
339+
},
337340
{
338341
"include": "#command"
339342
},
@@ -594,7 +597,7 @@
594597
]
595598
},
596599
"numbers": {
597-
"match": "(?<![\\w-])[-+]?(?:\\d+|\\d{1,3}(?:_\\d{3})*)(?:\\.\\d*)?(?i:ns|us|ms|sec|min|hr|day|wk|b|kb|mb|gb|tb|pt|eb|zb|kib|mib|gib|tib|pit|eib|zib)?(?:(?![\\w.])|(?=\\.\\.))",
600+
"match": "(?<![\\w-])[-+]?(?:\\d+|\\d{1,3}(?:_\\d{3})*)(?:\\.\\d*)?(?i:ns|us|µs|ms|sec|min|hr|day|wk|b|kb|mb|gb|tb|pt|eb|zb|kib|mib|gib|tib|pit|eib|zib)?(?:(?![\\w.])|(?=\\.\\.))",
598601
"name": "constant.numeric.nushell"
599602
},
600603
"numbers-hexa": {
@@ -619,7 +622,7 @@
619622
"name": "keyword.control.nushell"
620623
},
621624
"operators-word": {
622-
"match": "(?<=[ (])(?:mod|in|not-in|not|and|or|xor|bit-or|bit-and|bit-xor|bit-shl|bit-shr|starts-with|ends-with)(?=[ )]|$)",
625+
"match": "(?<=[ (])(?:mod|in|not-in|not|and|or|xor|bit-or|bit-and|bit-xor|bit-shl|bit-shr|starts-with|ends-with|like|not-like)(?=[ )]|$)",
623626
"name": "keyword.control.nushell"
624627
},
625628
"parameters": {
@@ -697,6 +700,9 @@
697700
{
698701
"include": "#string-interpolated-single"
699702
},
703+
{
704+
"include": "#string-raw"
705+
},
700706
{
701707
"include": "#string-bare"
702708
}
@@ -718,7 +724,7 @@
718724
"name": "string.quoted.single.nushell"
719725
},
720726
"string-bare": {
721-
"match": "[^$\\[{(\"',|#\\s][^\\[\\]{}()\"'\\s#,|]*",
727+
"match": "[^$\\[{(\"',|#\\s;][^\\[\\]{}()\"'\\s,|;]*",
722728
"name": "string.bare.nushell"
723729
},
724730
"string-double-quote": {
@@ -795,6 +801,21 @@
795801
}
796802
]
797803
},
804+
"string-raw": {
805+
"begin": "r(#+)'",
806+
"beginCaptures": {
807+
"0": {
808+
"name": "punctuation.definition.string.begin.nushell"
809+
}
810+
},
811+
"end": "'\\1",
812+
"endCaptures": {
813+
"0": {
814+
"name": "punctuation.definition.string.end.nushell"
815+
}
816+
},
817+
"name": "string.raw.nushell"
818+
},
798819
"string-single-quote": {
799820
"begin": "'",
800821
"beginCaptures": {

packages/tm-grammars/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2590,18 +2590,18 @@ export const grammars = [
25902590
aliases: [
25912591
'nu',
25922592
],
2593-
byteSize: 18552,
2593+
byteSize: 18846,
25942594
displayName: 'nushell',
25952595
funding: [
25962596
],
2597-
hash: 'DgA9_I6vLGRVtSfGmB03E2wt6GBAJTMlN2re2_OyAQ8',
2598-
lastUpdate: '2024-09-23T21:05:29Z',
2597+
hash: 'uibY99O-tSYoc-xQCftsk3G1ZtTNcOO9rXKTcyHrSCI',
2598+
lastUpdate: '2025-03-24T23:34:41Z',
25992599
license: 'MIT',
26002600
licenseUrl: 'https://raw.githubusercontent.com/nushell/vscode-nushell-lang/main/LICENSE',
26012601
name: 'nushell',
26022602
scopeName: 'source.nushell',
2603-
sha: '63fcfaf32fe18db9f8bc75805117c2af3a896806',
2604-
source: 'https://github.com/nushell/vscode-nushell-lang/blob/63fcfaf32fe18db9f8bc75805117c2af3a896806/syntaxes/nushell.tmLanguage.json',
2603+
sha: '28ccc907ad4e6bccf252fba4c83cc7f4c00c2161',
2604+
source: 'https://github.com/nushell/vscode-nushell-lang/blob/28ccc907ad4e6bccf252fba4c83cc7f4c00c2161/syntaxes/nushell.tmLanguage.json',
26052605
},
26062606
{
26072607
aliases: [

packages/tm-grammars/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tm-grammars",
33
"type": "module",
4-
"version": "1.23.5",
4+
"version": "1.23.6",
55
"description": "Collecton of TextMate grammars in JSON",
66
"author": "Anthony Fu <[email protected]>",
77
"license": "MIT",

packages/tm-grammars/raw/nushell.json

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,9 @@
337337
{
338338
"include": "#constant-value"
339339
},
340+
{
341+
"include": "#string-raw"
342+
},
340343
{
341344
"include": "#command"
342345
},
@@ -597,7 +600,7 @@
597600
]
598601
},
599602
"numbers": {
600-
"match": "(?<![\\w-])[-+]?(?:\\d+|\\d{1,3}(?:_\\d{3})*)(?:\\.\\d*)?(?i:ns|us|ms|sec|min|hr|day|wk|b|kb|mb|gb|tb|pt|eb|zb|kib|mib|gib|tib|pit|eib|zib)?(?:(?![\\w.])|(?=\\.\\.))",
603+
"match": "(?<![\\w-])[-+]?(?:\\d+|\\d{1,3}(?:_\\d{3})*)(?:\\.\\d*)?(?i:ns|us|µs|ms|sec|min|hr|day|wk|b|kb|mb|gb|tb|pt|eb|zb|kib|mib|gib|tib|pit|eib|zib)?(?:(?![\\w.])|(?=\\.\\.))",
601604
"name": "constant.numeric.nushell"
602605
},
603606
"numbers-hexa": {
@@ -622,7 +625,7 @@
622625
"name": "keyword.control.nushell"
623626
},
624627
"operators-word": {
625-
"match": "(?<= |\\()(?:mod|in|not-in|not|and|or|xor|bit-or|bit-and|bit-xor|bit-shl|bit-shr|starts-with|ends-with)(?= |\\)|$)",
628+
"match": "(?<= |\\()(?:mod|in|not-in|not|and|or|xor|bit-or|bit-and|bit-xor|bit-shl|bit-shr|starts-with|ends-with|like|not-like)(?= |\\)|$)",
626629
"name": "keyword.control.nushell"
627630
},
628631
"parameters": {
@@ -700,6 +703,9 @@
700703
{
701704
"include": "#string-interpolated-single"
702705
},
706+
{
707+
"include": "#string-raw"
708+
},
703709
{
704710
"include": "#string-bare"
705711
}
@@ -721,7 +727,7 @@
721727
"name": "string.quoted.single.nushell"
722728
},
723729
"string-bare": {
724-
"match": "[^$\\[{(\"',|#\\s|][^\\[\\]{}()\"'\\s#,|]*",
730+
"match": "[^$\\[{(\"',|#\\s|;][^\\[\\]{}()\"'\\s,|;]*",
725731
"name": "string.bare.nushell"
726732
},
727733
"string-double-quote": {
@@ -798,6 +804,21 @@
798804
}
799805
]
800806
},
807+
"string-raw": {
808+
"begin": "r(#+)'",
809+
"beginCaptures": {
810+
"0": {
811+
"name": "punctuation.definition.string.begin.nushell"
812+
}
813+
},
814+
"end": "'\\1",
815+
"endCaptures": {
816+
"0": {
817+
"name": "punctuation.definition.string.end.nushell"
818+
}
819+
},
820+
"name": "string.raw.nushell"
821+
},
801822
"string-single-quote": {
802823
"begin": "'",
803824
"beginCaptures": {

packages/tm-themes/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { themes } from 'tm-themes'
2222

2323
| Name | ID | Source | License | Sponsor | File Size |
2424
| ---- | -- | ------ | ------- | ------- | --------- |
25-
| Catppuccin Latte | `catppuccin-latte` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/4113b4113759e27c24a4fec5b791ed18476f63ed/packages/catppuccin-vsc/package.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | [GitHub Sponsors: **@catppuccin**](https://github.com/sponsors/catppuccin) [Open Collective: **catppuccin**](https://opencollective.com/catppuccin) | 44.49 kB |
25+
| Catppuccin Latte | `catppuccin-latte` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/959f49be375e9ff6939e6fa6be8b95c8b6e377a3/packages/catppuccin-vsc/package.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | [GitHub Sponsors: **@catppuccin**](https://github.com/sponsors/catppuccin) [Open Collective: **catppuccin**](https://opencollective.com/catppuccin) | 44.49 kB |
2626
| Everforest Light | `everforest-light` | [sainnhe/everforest-vscode](https://github.com/sainnhe/everforest-vscode/blob/b039b30727868d77108ec85f0be66e6d80a9bc1f/themes/everforest-light.json) | [MIT](https://raw.githubusercontent.com/sainnhe/everforest-vscode/master/LICENSE) | | 52.43 kB |
2727
| GitHub Light | `github-light` | [primer/github-vscode-theme](https://github.com/primer/github-vscode-theme/blob/f7a67d67fc2302a0ec36ddfb7bdd57142f4575e8/src/theme.js) | [MIT](https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE) | | 10.86 kB |
2828
| GitHub Light Default | `github-light-default` | [primer/github-vscode-theme](https://github.com/primer/github-vscode-theme/blob/f7a67d67fc2302a0ec36ddfb7bdd57142f4575e8/src/theme.js) | [MIT](https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE) | | 13.77 kB |
@@ -48,9 +48,9 @@ import { themes } from 'tm-themes'
4848
| Andromeeda | `andromeeda` | [EliverLara/Andromeda](https://github.com/EliverLara/Andromeda/blob/94008ecde515dd2306e51d60fbb965bca2a516ad/themes/Andromeda-color-theme.json) | [MIT](https://raw.githubusercontent.com/EliverLara/Andromeda/master/LICENSE.md) | [GitHub Sponsors: **@EliverLara**](https://github.com/sponsors/EliverLara) [paypal.me](https://www.paypal.me/EliverLara/) | 8.59 kB |
4949
| Aurora X | `aurora-x` | [marqu3ss/Aurora-X](https://github.com/marqu3ss/Aurora-X/blob/118727efadf48872adcd81f6c00be580097d6592/themes/Aurora%20X-color-theme.json) | | | 13.28 kB |
5050
| Ayu Dark | `ayu-dark` | [ayu-theme/vscode-ayu](https://github.com/ayu-theme/vscode-ayu/blob/798bc07c1ac7faccab57081042ba9a16621cdde4/ayu-dark.json) | [MIT](https://raw.githubusercontent.com/ayu-theme/vscode-ayu/master/LICENSE) | | 14.54 kB |
51-
| Catppuccin Frappé | `catppuccin-frappe` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/4113b4113759e27c24a4fec5b791ed18476f63ed/packages/catppuccin-vsc/package.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | [GitHub Sponsors: **@catppuccin**](https://github.com/sponsors/catppuccin) [Open Collective: **catppuccin**](https://opencollective.com/catppuccin) | 44.49 kB |
52-
| Catppuccin Macchiato | `catppuccin-macchiato` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/4113b4113759e27c24a4fec5b791ed18476f63ed/packages/catppuccin-vsc/package.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | [GitHub Sponsors: **@catppuccin**](https://github.com/sponsors/catppuccin) [Open Collective: **catppuccin**](https://opencollective.com/catppuccin) | 44.49 kB |
53-
| Catppuccin Mocha | `catppuccin-mocha` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/4113b4113759e27c24a4fec5b791ed18476f63ed/packages/catppuccin-vsc/package.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | [GitHub Sponsors: **@catppuccin**](https://github.com/sponsors/catppuccin) [Open Collective: **catppuccin**](https://opencollective.com/catppuccin) | 44.49 kB |
51+
| Catppuccin Frappé | `catppuccin-frappe` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/959f49be375e9ff6939e6fa6be8b95c8b6e377a3/packages/catppuccin-vsc/package.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | [GitHub Sponsors: **@catppuccin**](https://github.com/sponsors/catppuccin) [Open Collective: **catppuccin**](https://opencollective.com/catppuccin) | 44.49 kB |
52+
| Catppuccin Macchiato | `catppuccin-macchiato` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/959f49be375e9ff6939e6fa6be8b95c8b6e377a3/packages/catppuccin-vsc/package.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | [GitHub Sponsors: **@catppuccin**](https://github.com/sponsors/catppuccin) [Open Collective: **catppuccin**](https://opencollective.com/catppuccin) | 44.49 kB |
53+
| Catppuccin Mocha | `catppuccin-mocha` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/959f49be375e9ff6939e6fa6be8b95c8b6e377a3/packages/catppuccin-vsc/package.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | [GitHub Sponsors: **@catppuccin**](https://github.com/sponsors/catppuccin) [Open Collective: **catppuccin**](https://opencollective.com/catppuccin) | 44.49 kB |
5454
| Dark Plus | `dark-plus` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/09fe3fcbc1514bc35742dc4325d05b7d7adfcad2/extensions/theme-defaults/themes/dark_plus.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | | 8.83 kB |
5555
| Dracula Theme | `dracula` | [dracula/visual-studio-code](https://github.com/dracula/visual-studio-code/blob/61743d6ea21cde34d9ad1009ec784ffe6f5e457c/src/dracula.yml) | [MIT](https://raw.githubusercontent.com/dracula/visual-studio-code/main/LICENSE) | | 20.51 kB |
5656
| Dracula Theme Soft | `dracula-soft` | [dracula/visual-studio-code](https://github.com/dracula/visual-studio-code/blob/61743d6ea21cde34d9ad1009ec784ffe6f5e457c/src/dracula.yml) | [MIT](https://raw.githubusercontent.com/dracula/visual-studio-code/main/LICENSE) | | 20.52 kB |

packages/tm-themes/index.js

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ export const themes = [
6868
url: 'https://opencollective.com/catppuccin',
6969
},
7070
],
71-
hash: '7A2WW4vfvQXhJcggZQrDhz2sNi2bVYXdjXhEw2LtPYQ',
72-
lastUpdate: '2025-02-11T17:25:30Z',
71+
hash: 'bieRnNLya7egtn55s8U8HgYDSMHf6rpTyo98-ZDBVAA',
72+
lastUpdate: '2025-03-23T12:19:34Z',
7373
license: 'MIT',
7474
licenseUrl: 'https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE',
7575
name: 'catppuccin-frappe',
76-
sha: '4113b4113759e27c24a4fec5b791ed18476f63ed',
77-
source: 'https://github.com/catppuccin/vscode/blob/4113b4113759e27c24a4fec5b791ed18476f63ed/packages/catppuccin-vsc/package.json',
76+
sha: '959f49be375e9ff6939e6fa6be8b95c8b6e377a3',
77+
source: 'https://github.com/catppuccin/vscode/blob/959f49be375e9ff6939e6fa6be8b95c8b6e377a3/packages/catppuccin-vsc/package.json',
7878
type: 'dark',
7979
},
8080
{
@@ -92,13 +92,13 @@ export const themes = [
9292
url: 'https://opencollective.com/catppuccin',
9393
},
9494
],
95-
hash: '-yk1YO_PgTS_Tjmg0fq2MsX6x7SnQZgNzvDPta3q4SQ',
96-
lastUpdate: '2025-02-11T17:25:30Z',
95+
hash: 'cYMmMTyFvMj3C6a7sLEvFQCAalUcFVhNtDBbmj_yLQk',
96+
lastUpdate: '2025-03-23T12:19:34Z',
9797
license: 'MIT',
9898
licenseUrl: 'https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE',
9999
name: 'catppuccin-latte',
100-
sha: '4113b4113759e27c24a4fec5b791ed18476f63ed',
101-
source: 'https://github.com/catppuccin/vscode/blob/4113b4113759e27c24a4fec5b791ed18476f63ed/packages/catppuccin-vsc/package.json',
100+
sha: '959f49be375e9ff6939e6fa6be8b95c8b6e377a3',
101+
source: 'https://github.com/catppuccin/vscode/blob/959f49be375e9ff6939e6fa6be8b95c8b6e377a3/packages/catppuccin-vsc/package.json',
102102
type: 'light',
103103
},
104104
{
@@ -116,13 +116,13 @@ export const themes = [
116116
url: 'https://opencollective.com/catppuccin',
117117
},
118118
],
119-
hash: 'mUM2yG3hys7XAmI8CoGmRkCRHPyneZOE-2U8W6EmL40',
120-
lastUpdate: '2025-02-11T17:25:30Z',
119+
hash: 'B3rdjy0nnkWIn0RrPrS0VuAVexC8LxX9JKV8lQKHfpk',
120+
lastUpdate: '2025-03-23T12:19:34Z',
121121
license: 'MIT',
122122
licenseUrl: 'https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE',
123123
name: 'catppuccin-macchiato',
124-
sha: '4113b4113759e27c24a4fec5b791ed18476f63ed',
125-
source: 'https://github.com/catppuccin/vscode/blob/4113b4113759e27c24a4fec5b791ed18476f63ed/packages/catppuccin-vsc/package.json',
124+
sha: '959f49be375e9ff6939e6fa6be8b95c8b6e377a3',
125+
source: 'https://github.com/catppuccin/vscode/blob/959f49be375e9ff6939e6fa6be8b95c8b6e377a3/packages/catppuccin-vsc/package.json',
126126
type: 'dark',
127127
},
128128
{
@@ -140,13 +140,13 @@ export const themes = [
140140
url: 'https://opencollective.com/catppuccin',
141141
},
142142
],
143-
hash: 'fWmZXdd6OVusJ3Nku7vhnj79leYvjvkWkRSqZxgCaac',
144-
lastUpdate: '2025-02-11T17:25:30Z',
143+
hash: 'D5FhfPrk-Hq8N7JfjwUNgKn-KfB-r_pmRnMaEF-tGZU',
144+
lastUpdate: '2025-03-23T12:19:34Z',
145145
license: 'MIT',
146146
licenseUrl: 'https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE',
147147
name: 'catppuccin-mocha',
148-
sha: '4113b4113759e27c24a4fec5b791ed18476f63ed',
149-
source: 'https://github.com/catppuccin/vscode/blob/4113b4113759e27c24a4fec5b791ed18476f63ed/packages/catppuccin-vsc/package.json',
148+
sha: '959f49be375e9ff6939e6fa6be8b95c8b6e377a3',
149+
source: 'https://github.com/catppuccin/vscode/blob/959f49be375e9ff6939e6fa6be8b95c8b6e377a3/packages/catppuccin-vsc/package.json',
150150
type: 'dark',
151151
},
152152
{

packages/tm-themes/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tm-themes",
33
"type": "module",
4-
"version": "1.10.1",
4+
"version": "1.10.2",
55
"description": "Collecton of TextMate grammars in JSON",
66
"author": "Anthony Fu <[email protected]>",
77
"license": "MIT",

test/__snapshots__/nushell.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#DBD7CACC
2121
#C98A7D repo
2222
#444444 ]
23-
#C98A7D ;
23+
#DBD7CACC ;
2424
#DBD7CACC
2525
#444444 [
2626
#C98A7D Nushell

0 commit comments

Comments
 (0)