I know that C-k C-c comments a selection, and currently it works as thus in C++:
AwesomeCode();
MoreAwesomeCode();
//AwesomeCode();
//MoreAwesomeCode();
However, I would like it to comment it as such:
// AwesomeCode();
// MoreAwesomeCode();
Is this possible?