I am curious how to comment out a "folded" region of code with VS Code?
For example, I would like to comment out the "foldable", aka "collapsable", region:
if (a == b) {
dance();
}
I know the keyboard shortcut for folding regions as such is:
Ctrl
+Shift
+[
on Windows and Linux⌥
+⌘
+[
on macOS
Is there a similar keyboard shortcut to comment out that same region similar to the keyboard shortcut for folding?
Thanks for your responses.