Closed jwortmann closed 3 years ago
A single end is currently highlighted as variable.language.io.fortran, which is a bit annoying because it changes its color in many color schemes while typing.
end
variable.language.io.fortran
I think it might be better from a highlighting perspective to include a rule like
- match: \bend\b scope: keyword.control.end.fortran
somewhere appropriate to always highlight end as keyword. Or maybe use e.g. the scope keyword.declaration.end.fortran instead.
keyword.declaration.end.fortran
Yes, this can be annoying. I also noticed it while coding yesterday. I can make a PR with this later tonight (probably).
Resolved with release 1.2
A single
end
is currently highlighted asvariable.language.io.fortran
, which is a bit annoying because it changes its color in many color schemes while typing.I think it might be better from a highlighting perspective to include a rule like
somewhere appropriate to always highlight
end
as keyword. Or maybe use e.g. the scopekeyword.declaration.end.fortran
instead.