On Friday, October 18, 2024, Martin D Kealey <mar...@kurahaupo.gen.nz>
wrote:
>
> The problematic code for editors looks like this:
>
> #ifdef FOO
> if (foo && zot) {
> #else
> if (bar && zot) {
> #endif
>
> Vim certainly does not like this,
>

How about this:

#ifdef FOO
if (foo && zot)
#else
if (bar && zot)
#endif
{


-- 
Oğuz

Reply via email to