Skip to content

Commit 494e6c5

Browse files
committed
add support for old fortran language grammars
1 parent 1cdd8da commit 494e6c5

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

package.json

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "linter-gfortran",
33
"displayName": "Modern Fortran",
44
"description": "Modern Fortran language support, including syntax highlighting and error detection.",
5-
"version": "0.4.2",
5+
"version": "0.4.4",
66
"publisher": "krvajalm",
77
"engines": {
88
"vscode": "^1.12.0"
@@ -36,13 +36,32 @@
3636
".F95"
3737
],
3838
"configuration": "./language-configuration.json"
39+
},
40+
{
41+
"id": "fortran",
42+
"aliases": [
43+
"Fortran ",
44+
"fortran"
45+
],
46+
"extensions": [
47+
".f",
48+
".F",
49+
".f77",
50+
".F77",
51+
".FPP"
52+
]
3953
}
4054
],
4155
"grammars": [
4256
{
4357
"language": "fortran90",
4458
"scopeName": "source.fortran.modern",
4559
"path": "./syntaxes/fortran90.tmLanguage"
60+
},
61+
{
62+
"language": "fortran",
63+
"scopeName": "source.fortran",
64+
"path": "./syntaxes/fortran.tmLanguage"
4665
}
4766
],
4867
"snippets": [

0 commit comments

Comments
 (0)