tm-grammars 1.32.5 → 1.32.6
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 +2 -2
- package/grammars/nextflow-groovy.json +4 -0
- package/grammars/nextflow.json +1 -1
- package/index.js +12 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -155,8 +155,8 @@ import { grammars } from 'tm-grammars'
|
|
|
155
155
|
| `moonbit` | `mbt` `mbti` | [moonbitlang/moonbit-tmLanguage](https://github.com/moonbitlang/moonbit-tmLanguage/blob/e19b5bd265bacd5eeae6462c9fc152b696029198/grammars/moonbit.tmLanguage.json) | [Apache-2.0](https://raw.githubusercontent.com/moonbitlang/moonbit-tmLanguage/main/LICENSE) | | | 23.55 kB |
|
|
156
156
|
| `move` | | [damirka/move-syntax](https://github.com/damirka/move-syntax/blob/01aeb9284635195a4861cfa7d46759320bb6609c/syntaxes/move.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/damirka/move-syntax/main/LICENSE) | | | 16.74 kB |
|
|
157
157
|
| `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 |
|
|
158
|
-
| `nextflow` | `nf` | [nextflow-io/vscode-language-nextflow](https://github.com/nextflow-io/vscode-language-nextflow/blob/
|
|
159
|
-
| `nextflow-groovy` | | [nextflow-io/vscode-language-nextflow](https://github.com/nextflow-io/vscode-language-nextflow/blob/
|
|
158
|
+
| `nextflow` | `nf` | [nextflow-io/vscode-language-nextflow](https://github.com/nextflow-io/vscode-language-nextflow/blob/928fc02dd8d082d489a5cec0c019268894719339/syntaxes/nextflow.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/nextflow-io/vscode-language-nextflow/main/LICENSE.md) | | `nextflow-groovy` | 4.11 kB |
|
|
159
|
+
| `nextflow-groovy` | | [nextflow-io/vscode-language-nextflow](https://github.com/nextflow-io/vscode-language-nextflow/blob/928fc02dd8d082d489a5cec0c019268894719339/syntaxes/groovy.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/nextflow-io/vscode-language-nextflow/main/LICENSE.md) | | | 9.96 kB |
|
|
160
160
|
| `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 |
|
|
161
161
|
| `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.78 kB |
|
|
162
162
|
| `nix` | | [nix-community/vscode-nix-ide](https://github.com/nix-community/vscode-nix-ide/blob/effbf3494a43250a537834805b305793994b9ca8/dist/nix.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/nix-community/vscode-nix-ide/main/LICENSE) | [GitHub Sponsors: **@nix-community**](https://github.com/sponsors/nix-community) [Open Collective: **nix-community**](https://opencollective.com/nix-community) | `markdown-nix` | 13.87 kB |
|
package/grammars/nextflow.json
CHANGED
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
},
|
|
155
155
|
"function-def": {
|
|
156
156
|
"applyEndPatternLast": 1,
|
|
157
|
-
"begin": "(?<=;|^|\\{)(?=\\s*(?:def|(?:(?:boolean|byte|char|short|int|float|long|double)|@?(?:[A-Za-z]\\w*\\.)*[A-Z]+\\w*)[]\\[]*(?:<.*>)?
|
|
157
|
+
"begin": "(?<=;|^|\\{)(?=\\s*(?:def|(?:(?:boolean|byte|char|short|int|float|long|double)|@?(?:[A-Za-z]\\w*\\.)*[A-Z]+\\w*)[]\\[]*(?:<.*>)?)\\s+([^=]+\\s+)?\\w+\\s*\\()",
|
|
158
158
|
"end": "}|(?=[^{])",
|
|
159
159
|
"name": "meta.definition.method.groovy",
|
|
160
160
|
"patterns": [
|
package/index.js
CHANGED
|
@@ -2903,37 +2903,37 @@ export const grammars = [
|
|
|
2903
2903
|
aliases: [
|
|
2904
2904
|
'nf',
|
|
2905
2905
|
],
|
|
2906
|
-
byteSize:
|
|
2906
|
+
byteSize: 4206,
|
|
2907
2907
|
displayName: 'Nextflow',
|
|
2908
2908
|
embedded: [
|
|
2909
2909
|
'nextflow-groovy',
|
|
2910
2910
|
],
|
|
2911
2911
|
funding: [
|
|
2912
2912
|
],
|
|
2913
|
-
hash: '
|
|
2914
|
-
lastUpdate: '
|
|
2913
|
+
hash: 'Tk_8Vg2QfjCeAZPrk-tjh6jzIiXKF5UMMf80gkj49LY',
|
|
2914
|
+
lastUpdate: '2026-08-21T15:57:32Z',
|
|
2915
2915
|
license: 'MIT',
|
|
2916
2916
|
licenseUrl: 'https://raw.githubusercontent.com/nextflow-io/vscode-language-nextflow/main/LICENSE.md',
|
|
2917
2917
|
name: 'nextflow',
|
|
2918
2918
|
scopeName: 'source.nextflow',
|
|
2919
|
-
sha: '
|
|
2920
|
-
source: 'https://github.com/nextflow-io/vscode-language-nextflow/blob/
|
|
2921
|
-
sourceApi: 'https://api.github.com/repos/nextflow-io/vscode-language-nextflow/contents/syntaxes/nextflow.tmLanguage.json?ref=
|
|
2919
|
+
sha: '928fc02dd8d082d489a5cec0c019268894719339',
|
|
2920
|
+
source: 'https://github.com/nextflow-io/vscode-language-nextflow/blob/928fc02dd8d082d489a5cec0c019268894719339/syntaxes/nextflow.tmLanguage.json',
|
|
2921
|
+
sourceApi: 'https://api.github.com/repos/nextflow-io/vscode-language-nextflow/contents/syntaxes/nextflow.tmLanguage.json?ref=928fc02dd8d082d489a5cec0c019268894719339',
|
|
2922
2922
|
},
|
|
2923
2923
|
{
|
|
2924
|
-
byteSize:
|
|
2924
|
+
byteSize: 10200,
|
|
2925
2925
|
displayName: 'Nextflow Groovy',
|
|
2926
2926
|
funding: [
|
|
2927
2927
|
],
|
|
2928
|
-
hash: '
|
|
2929
|
-
lastUpdate: '
|
|
2928
|
+
hash: 'xH0Cd_KJOpjBn3hY6O7u5M9Onqh5A1pqYeJdjLEOyUQ',
|
|
2929
|
+
lastUpdate: '2026-08-21T15:57:32Z',
|
|
2930
2930
|
license: 'MIT',
|
|
2931
2931
|
licenseUrl: 'https://raw.githubusercontent.com/nextflow-io/vscode-language-nextflow/main/LICENSE.md',
|
|
2932
2932
|
name: 'nextflow-groovy',
|
|
2933
2933
|
scopeName: 'source.nextflow-groovy',
|
|
2934
|
-
sha: '
|
|
2935
|
-
source: 'https://github.com/nextflow-io/vscode-language-nextflow/blob/
|
|
2936
|
-
sourceApi: 'https://api.github.com/repos/nextflow-io/vscode-language-nextflow/contents/syntaxes/groovy.tmLanguage.json?ref=
|
|
2934
|
+
sha: '928fc02dd8d082d489a5cec0c019268894719339',
|
|
2935
|
+
source: 'https://github.com/nextflow-io/vscode-language-nextflow/blob/928fc02dd8d082d489a5cec0c019268894719339/syntaxes/groovy.tmLanguage.json',
|
|
2936
|
+
sourceApi: 'https://api.github.com/repos/nextflow-io/vscode-language-nextflow/contents/syntaxes/groovy.tmLanguage.json?ref=928fc02dd8d082d489a5cec0c019268894719339',
|
|
2937
2937
|
},
|
|
2938
2938
|
{
|
|
2939
2939
|
byteSize: 34690,
|