Hi. After an update to 2.3 I get the following behavior.
When I write:
#ifdef TEST
abc();
#endif
The "abc();" line is underlined (blue, dashed line - like in py when you first use tab and then use spaces).
#if defined TEST
abc();
#endif
No underlining here.
I don't see much o a change in cpp.scheme so I'm assuming this is something in the parser. Or am I wrong? But never mind that - is this change intentional and if so - why?