tm-grammars 1.28.0 → 1.28.1
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/move.json +21 -6
- package/index.js +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -148,7 +148,7 @@ import { grammars } from 'tm-grammars'
|
|
|
148
148
|
| `mipsasm` | `mips` | [textmate/mips.tmbundle](https://github.com/textmate/mips.tmbundle/blob/eb7601016a109bf912a48a1c21988f3c4a59fb3a/Syntaxes/MIPS.tmLanguage) | | | | 2.90 kB |
|
|
149
149
|
| `mojo` | | [modularml/mojo-syntax](https://github.com/modularml/mojo-syntax/blob/bd0aaab252fbbc6d84d4e4922ec535d17fe7e832/syntaxes/mojo.syntax.json) | [MIT](https://raw.githubusercontent.com/modular/mojo-syntax/main/LICENSE) | | | 65.94 kB |
|
|
150
150
|
| `moonbit` | `mbt` `mbti` | [moonbitlang/moonbit-tmLanguage](https://github.com/moonbitlang/moonbit-tmLanguage/blob/d9501977864ee8196d4f40551cfc4561f7499bc7/grammars/moonbit.tmLanguage.json) | [Apache-2.0](https://raw.githubusercontent.com/moonbitlang/moonbit-tmLanguage/main/LICENSE) | | | 5.13 kB |
|
|
151
|
-
| `move` | | [damirka/move-syntax](https://github.com/damirka/move-syntax/blob/
|
|
151
|
+
| `move` | | [damirka/move-syntax](https://github.com/damirka/move-syntax/blob/03e44307aefd99bac3c10bda4430a22c92d6d476/syntaxes/move.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/damirka/move-syntax/main/LICENSE) | | | 16.59 kB |
|
|
152
152
|
| `narrat` | `nar` | [liana-p/narrat-syntax-highlighting-vscode](https://github.com/liana-p/narrat-syntax-highlighting-vscode/blob/00d4b410338fc50ca0ce77a1f7e873c1fb66d376/syntaxes/narrat.tmLanguage.yaml) | [MIT](https://raw.githubusercontent.com/liana-p/narrat-syntax-highlighting-vscode/main/LICENSE) | | | 3.38 kB |
|
|
153
153
|
| `nextflow` | `nf` | [nextflow-io/vscode-language-nextflow](https://github.com/nextflow-io/vscode-language-nextflow/blob/720a2bd501837ca815acf4a225d9f3ba71a2adb0/syntaxes/nextflow.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/nextflow-io/vscode-language-nextflow/main/LICENSE.md) | | | 4.11 kB |
|
|
154
154
|
| `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.88 kB |
|
package/grammars/move.json
CHANGED
|
@@ -761,24 +761,39 @@
|
|
|
761
761
|
"name": "constant.numeric.move"
|
|
762
762
|
},
|
|
763
763
|
{
|
|
764
|
-
"begin": "
|
|
764
|
+
"begin": "\"",
|
|
765
765
|
"end": "\"",
|
|
766
|
-
"name": "meta.
|
|
766
|
+
"name": "meta.string.literal.move",
|
|
767
767
|
"patterns": [
|
|
768
768
|
{
|
|
769
|
-
"match": "
|
|
770
|
-
"name": "constant.character.escape.move"
|
|
769
|
+
"match": "\\\\x\\h\\h",
|
|
770
|
+
"name": "constant.character.escape.hex.move"
|
|
771
771
|
},
|
|
772
772
|
{
|
|
773
|
-
"match": "
|
|
773
|
+
"match": "\\\\.",
|
|
774
774
|
"name": "constant.character.escape.move"
|
|
775
775
|
},
|
|
776
|
+
{
|
|
777
|
+
"match": ".",
|
|
778
|
+
"name": "string.quoted.double.raw.move"
|
|
779
|
+
}
|
|
780
|
+
]
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"begin": "\\bb\"",
|
|
784
|
+
"end": "\"",
|
|
785
|
+
"name": "meta.vector.literal.ascii.move",
|
|
786
|
+
"patterns": [
|
|
776
787
|
{
|
|
777
788
|
"match": "\\\\x\\h\\h",
|
|
778
789
|
"name": "constant.character.escape.hex.move"
|
|
779
790
|
},
|
|
780
791
|
{
|
|
781
|
-
"match": "
|
|
792
|
+
"match": "\\\\.",
|
|
793
|
+
"name": "constant.character.escape.move"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"match": ".",
|
|
782
797
|
"name": "string.quoted.double.raw.move"
|
|
783
798
|
}
|
|
784
799
|
]
|
package/index.js
CHANGED
|
@@ -2729,19 +2729,19 @@ export const grammars = [
|
|
|
2729
2729
|
sourceApi: 'https://api.github.com/repos/moonbitlang/moonbit-tmLanguage/contents/grammars/moonbit.tmLanguage.json?ref=d9501977864ee8196d4f40551cfc4561f7499bc7',
|
|
2730
2730
|
},
|
|
2731
2731
|
{
|
|
2732
|
-
byteSize:
|
|
2732
|
+
byteSize: 16984,
|
|
2733
2733
|
displayName: 'Move',
|
|
2734
2734
|
funding: [
|
|
2735
2735
|
],
|
|
2736
|
-
hash: '
|
|
2737
|
-
lastUpdate: '
|
|
2736
|
+
hash: 'ouIM8NfAr6qJ7pJHtywBiDvafSQmrrzSgfhcOgRWTuM',
|
|
2737
|
+
lastUpdate: '2026-01-16T12:25:32Z',
|
|
2738
2738
|
license: 'MIT',
|
|
2739
2739
|
licenseUrl: 'https://raw.githubusercontent.com/damirka/move-syntax/main/LICENSE',
|
|
2740
2740
|
name: 'move',
|
|
2741
2741
|
scopeName: 'source.move',
|
|
2742
|
-
sha: '
|
|
2743
|
-
source: 'https://github.com/damirka/move-syntax/blob/
|
|
2744
|
-
sourceApi: 'https://api.github.com/repos/damirka/move-syntax/contents/syntaxes/move.tmLanguage.json?ref=
|
|
2742
|
+
sha: '03e44307aefd99bac3c10bda4430a22c92d6d476',
|
|
2743
|
+
source: 'https://github.com/damirka/move-syntax/blob/03e44307aefd99bac3c10bda4430a22c92d6d476/syntaxes/move.tmLanguage.json',
|
|
2744
|
+
sourceApi: 'https://api.github.com/repos/damirka/move-syntax/contents/syntaxes/move.tmLanguage.json?ref=03e44307aefd99bac3c10bda4430a22c92d6d476',
|
|
2745
2745
|
},
|
|
2746
2746
|
{
|
|
2747
2747
|
aliases: [
|