Skip to content

Commit 0b60211

Browse files
authored
Merge pull request #252 from jefflarkin/issue_247
Adds support for .f18 and .F18 file extensions.
2 parents 5ca5a24 + dd9c78a commit 0b60211

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
### Added
11+
12+
- Adds support for .f18 and .F18 file extensions
13+
([#252](https://github.com/krvajal/vscode-fortran-support/pull/252))
14+
1015
## [2.3.0]
1116

1217
### Fixed

Diff for: package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@
3939
".f95",
4040
".F95",
4141
".f08",
42-
".F08"
42+
".F08",
43+
".f18",
44+
".F18"
4345
],
4446
"configuration": "./language-configuration.json"
4547
},

Diff for: syntaxes/fortran_free-form.tmLanguage.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"f03",
1111
"F03",
1212
"f08",
13-
"F08"
13+
"F08",
14+
"f18",
15+
"F18"
1416
],
1517
"firstLineMatch": "(?i)-[*]- mode: fortran free -[*]-",
1618
"injections": {

0 commit comments

Comments
 (0)