Hiyas. First of all, thanks to the CodeBlocks developers for such a wonderful IDE!! Keep up the good work, guys

Anyways, when I'm debugging, I tend to comment out huge chunks of code by using #if 0 .... #endif for C/C++ languages. I find this much more practical than /* ... */ since the latter fails when there's already something commented with asterisks.
For example, while this works:
#if 0 //commented out
/*This is a a huge chunk of code*/
void somefunction()
{
...
}
#endif //commented out
this fails
/* commented out
/*This is a a huge chunk of code*/
void somefunction() //these
{ //lines
... //remain
} //uncommented
commented out */
What I'm suggesting is, if you deem it practical ( and it's not too much work

), instruct the editor to color everything between #if 0 and #endif as a comment as well for C / C++ languages.
Thanks!