I'm wondering how to properly comment out a "folded" section of code using VS Code.
For instance, I want to comment out the collapsible region:
if (a == b) {
dance();
}
I am familiar with the keyboard shortcut for folding regions:
Ctrl
+Shift
+[
on Windows and Linux⌥
+⌘
+[
on macOS
Is there a similar shortcut to comment out the same region as the fold shortcut?
Thank you for your help.