Hi,
it would be great to have support to comment out code blocks in C using #if 0, like:
#if 0
/* main */
int main(void)
{
return 0;
}
#endif
The reason is that also comment blocks can be commented out. Sadly the following doesn't work (yet):
ft.set('c', {'/*%s*/', '#if 0\n%s\n#endif'})
Thanks!