Hi, it would be great to have support to comment out code blocks in C using `#if 0`, like: ```c #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): ```lua ft.set('c', {'/*%s*/', '#if 0\n%s\n#endif'}) ``` Thanks!