tm-grammars 1.1.0 → 1.1.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 +2 -2
- package/index.js +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,8 +66,8 @@ import { grammars } from 'tm-grammars'
|
|
|
66
66
|
| `erb` | | [textmate/ruby.tmbundle](https://github.com/textmate/ruby.tmbundle/blob/ecf0f1df23984bcff9b51552e35d9696cb0d9539/Syntaxes/HTML%20(Ruby%20-%20ERB).tmLanguage) | | `html` `ruby` | 1.90 kB |
|
|
67
67
|
| `erlang` | `erl` | [erlang-ls/grammar](https://github.com/erlang-ls/grammar/blob/20fc9036e3c2b2ada5f14925bffc7041951f38af/Erlang.plist) | [Apache-2.0](https://raw.githubusercontent.com/erlang-ls/grammar/main/LICENSE) | | 28.16 kB |
|
|
68
68
|
| `fish` | | [bmalehorn/vscode-fish](https://github.com/bmalehorn/vscode-fish/blob/2fe4ccc72fdcd9b9f54fbb2c05fe9b350c32d718/syntaxes/fish.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/bmalehorn/vscode-fish/master/LICENSE) | | 5.06 kB |
|
|
69
|
-
| `fortran-fixed-form` |
|
|
70
|
-
| `fortran-free-form` |
|
|
69
|
+
| `fortran-fixed-form` | `f` `for` `f77` | [fortran-lang/vscode-fortran-support](https://github.com/fortran-lang/vscode-fortran-support/blob/e642012094fc0a7379f204bb4e61243005afb1da/syntaxes/fortran_fixed-form.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/fortran-lang/vscode-fortran-support/main/LICENSE) | `fortran-free-form` | 905.00 B |
|
|
70
|
+
| `fortran-free-form` | `f90` `f95` `f03` `f08` `f18` | [fortran-lang/vscode-fortran-support](https://github.com/fortran-lang/vscode-fortran-support/blob/f7fb41579770a0d8c75b9f295d167b31147b4f33/syntaxes/fortran_free-form.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/fortran-lang/vscode-fortran-support/main/LICENSE) | | 92.92 kB |
|
|
71
71
|
| `fsharp` | `f#` `fs` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/35d97bc7e439fce0f50f42074041ab2d8571b20a/extensions/fsharp/syntaxes/fsharp.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | `markdown` | 24.18 kB |
|
|
72
72
|
| `gdresource` | | [godotengine/godot-vscode-plugin](https://github.com/godotengine/godot-vscode-plugin/blob/e7e2d0439dea0fb3a568378554c81e0a17348a84/syntaxes/GDResource.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/godotengine/godot-vscode-plugin/master/LICENSE) | `gdshader` `gdscript` | 4.90 kB |
|
|
73
73
|
| `gdscript` | | [godotengine/godot-vscode-plugin](https://github.com/godotengine/godot-vscode-plugin/blob/34916becd6a67af294000d15844c2daaf7f69bc2/syntaxes/GDScript.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/godotengine/godot-vscode-plugin/master/LICENSE) | | 15.77 kB |
|
package/index.js
CHANGED
|
@@ -667,6 +667,11 @@ export const grammars = [
|
|
|
667
667
|
source: 'https://github.com/bmalehorn/vscode-fish/blob/2fe4ccc72fdcd9b9f54fbb2c05fe9b350c32d718/syntaxes/fish.tmLanguage.json',
|
|
668
668
|
},
|
|
669
669
|
{
|
|
670
|
+
aliases: [
|
|
671
|
+
'f',
|
|
672
|
+
'for',
|
|
673
|
+
'f77',
|
|
674
|
+
],
|
|
670
675
|
byteSize: 905,
|
|
671
676
|
displayName: 'Fortran (Fixed Form)',
|
|
672
677
|
embedded: [
|
|
@@ -681,6 +686,13 @@ export const grammars = [
|
|
|
681
686
|
source: 'https://github.com/fortran-lang/vscode-fortran-support/blob/e642012094fc0a7379f204bb4e61243005afb1da/syntaxes/fortran_fixed-form.tmLanguage.json',
|
|
682
687
|
},
|
|
683
688
|
{
|
|
689
|
+
aliases: [
|
|
690
|
+
'f90',
|
|
691
|
+
'f95',
|
|
692
|
+
'f03',
|
|
693
|
+
'f08',
|
|
694
|
+
'f18',
|
|
695
|
+
],
|
|
684
696
|
byteSize: 95147,
|
|
685
697
|
displayName: 'Fortran (Free Form)',
|
|
686
698
|
lastUpdate: '2023-05-09T01:04:12Z',
|
package/package.json
CHANGED