Kdevelop: comment block

I cannot find shortcuts for commenting blocks of code.

before:

int main() { std::cout << "my awesome program" << std::endl; return 0; } 

CTRL + /

 // int main() { // std::cout << "my awesome program" << std::endl; // return 0; //} 

This is a pretty important feature for me, and I can't find it anywhere on the menu. Does kdevelop not have this feature?

+7
source share
1 answer

Of course, I find this 2 minutes after posting ...

Comment: CTRL + D

uncomment: CTRL + SHIFT + D

shortcut list

+10
source

All Articles