File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
9
9
10
10
### Added
11
11
12
+ - Added language icons for Free and Fixed form Fortran
13
+ ([ #612 ] ( https://github.com/fortran-lang/vscode-fortran-support/issues/612 ) )
12
14
- Added capability for linter options to update automatically when settings change
13
15
([ #623 ] ( https://github.com/fortran-lang/vscode-fortran-support/pull/623 ) )
14
16
- Added unittests for ` spawnAsPromise ` to increase test coverage
Original file line number Diff line number Diff line change 84
84
" .fypp" ,
85
85
" .FYPP"
86
86
],
87
- "configuration" : " ./language-configuration.json"
87
+ "configuration" : " ./language-configuration.json" ,
88
+ "icon" : {
89
+ "light" : " ./assets/png/icon.png" ,
90
+ "dark" : " ./assets/png/icon.png"
91
+ }
88
92
},
89
93
{
90
94
"id" : " FortranFixedForm" ,
99
103
" .for" ,
100
104
" .FOR"
101
105
],
102
- "configuration" : " ./language-configuration.json"
106
+ "configuration" : " ./language-configuration.json" ,
107
+ "icon" : {
108
+ "light" : " ./assets/png/icon.png" ,
109
+ "dark" : " ./assets/png/icon.png"
110
+ }
103
111
}
104
112
],
105
113
"grammars" : [
You can’t perform that action at this time.
0 commit comments