Is it possible to configure multi-line comments to comment/uncomment selected text?
For example C/C++'s preprocessor could be toggled like this.
eg:
Before:
// a comment
Some(code); /* some comment */
After:
#if 0
// a comment
Some(code); /* some comment */
#endif
Since C/C++ don't support nested comments, I find this preferable behavior to quickly disable chunks of code.