File tree Expand file tree Collapse file tree 4 files changed +30
-0
lines changed Expand file tree Collapse file tree 4 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
70
70
71
71
### Fixed
72
72
73
+ - Fixed ` error stop variable ` syntax highlighting
74
+ ([ #486 ] ( https://github.com/fortran-lang/vscode-fortran-support/issues/486 ) )
73
75
- Fixed issue with linter cache containing outdated folders
74
76
([ #464 ] ( https://github.com/fortran-lang/vscode-fortran-support/issues/464 ) )
75
77
- Fixed slow performance of very long lines by using a different solution for
Original file line number Diff line number Diff line change 2203
2203
{
2204
2204
"include" : " #string-operators"
2205
2205
},
2206
+ {
2207
+ "include" : " #variable"
2208
+ },
2206
2209
{
2207
2210
"include" : " #invalid-character"
2208
2211
}
Original file line number Diff line number Diff line change
1
+ error stop
2
+ error stop 10
3
+ error stop " val" // " 10"
4
+ error stop label
Original file line number Diff line number Diff line change
1
+ > error stop
2
+ #^^^^^^^^^^ source .fortran .free meta .statement .control .errorstop .fortran keyword .control .errorstop .fortran
3
+ > error stop 10
4
+ #^^^^^^^^^^ source .fortran .free meta .statement .control .errorstop .fortran keyword .control .errorstop .fortran
5
+ # ^ source .fortran .free meta .statement .control .errorstop .fortran
6
+ # ^^ source .fortran .free meta .statement .control .errorstop .fortran constant .numeric .fortran
7
+ > error stop " val" // "10"
8
+ #^^^^^^^^^^ source .fortran .free meta .statement .control .errorstop .fortran keyword .control .errorstop .fortran
9
+ # ^ source .fortran .free meta .statement .control .errorstop .fortran
10
+ # ^ source .fortran .free meta .statement .control .errorstop .fortran string .quoted .double .fortran punctuation .definition .string .begin .fortran
11
+ # ^^^ source .fortran .free meta .statement .control .errorstop .fortran string .quoted .double .fortran
12
+ # ^ source .fortran .free meta .statement .control .errorstop .fortran string .quoted .double .fortran punctuation .definition .string .end .fortran
13
+ # ^^ source .fortran .free meta .statement .control .errorstop .fortran keyword .other .concatination .fortran
14
+ # ^ source .fortran .free meta .statement .control .errorstop .fortran string .quoted .double .fortran punctuation .definition .string .begin .fortran
15
+ # ^^ source .fortran .free meta .statement .control .errorstop .fortran string .quoted .double .fortran
16
+ # ^ source .fortran .free meta .statement .control .errorstop .fortran string .quoted .double .fortran punctuation .definition .string .end .fortran
17
+ > error stop label
18
+ #^^^^^^^^^^ source .fortran .free meta .statement .control .errorstop .fortran keyword .control .errorstop .fortran
19
+ # ^ source .fortran .free meta .statement .control .errorstop .fortran
20
+ # ^^^^^ source .fortran .free meta .statement .control .errorstop .fortran meta .parameter .fortran
21
+ >
You can’t perform that action at this time.
0 commit comments