I know there is keyboard shortcut for single line(//....) commenting Ctrl + K + C and uncommenting Ctrl + K + U .
My question is that, is there any default keyboard shortcut for block (/* ...... */) commenting and uncommenting? If yes how?
And If there is no default block commenting keyboard shortcut defined, So is there a way i could add my own keyboard shortcut for this? How do i do that?
I have found lot of questions regarding commenting, but haven't found spoken about block commenting anywhere. Any help is appreciated :)
/* */
are not recommended: - they cannot be placed inside one another, they can be mistaken in some cases by compilers as regular expressions. – Deluxe