Merge pull request #1708 from hyst329/master
Added Fortran 2003/2008 extension support (fixes #1703)
This commit is contained in:
commit
416e1abb27
|
@ -1,4 +1,5 @@
|
||||||
# Next
|
# Next
|
||||||
|
- Fix [#1703](https://github.com/Glavin001/atom-beautify/issues/1703). Now Fortran 2003/2008 file extensions are available for Fortran beautifier.
|
||||||
- ...
|
- ...
|
||||||
|
|
||||||
# v0.30.0 (2017-06-17)
|
# v0.30.0 (2017-06-17)
|
||||||
|
|
|
@ -18,6 +18,10 @@ module.exports = {
|
||||||
"F90"
|
"F90"
|
||||||
"f95"
|
"f95"
|
||||||
"F95"
|
"F95"
|
||||||
|
"f03"
|
||||||
|
"F03"
|
||||||
|
"f08"
|
||||||
|
"F08"
|
||||||
]
|
]
|
||||||
|
|
||||||
###
|
###
|
||||||
|
|
Loading…
Reference in New Issue