In if...else if...else blocks, the else if lines never highlight properly
for example:
if(Input.GetKeyUp(KeyCode.Down))
{
// do some stuff
}
else if(Input.GetKey(KeyCode.Up))
{
// do some other stuff
}
else
{
// do some more stuff
}
In this case, the if(...) line is highlighted properly, and the else stays red (in my color scheme), but the else if(...) line lacks almost all highlighting, except the improperly highlighted "else" and "if". Here's a screenshot using Monokai:

It's more of an annoyance than anything, but it really makes the code less readable.
Thanks
In if...else if...else blocks, the
else iflines never highlight properlyfor example:
In this case, the
if(...)line is highlighted properly, and the else stays red (in my color scheme), but theelse if(...)line lacks almost all highlighting, except the improperly highlighted "else" and "if". Here's a screenshot using Monokai:It's more of an annoyance than anything, but it really makes the code less readable.
Thanks