I cannot find a way to comment and uncomment multiple lines of code in Visual Studio Code.
Is it possible to comment and uncomment multiple lines in Visual Studio Co
How to comment out multiline / single line in VS Code:
Shift + Option + A:
/* multiline
comment */
CMD + /:
// single line comment
Shift + Alt + A:
/* multiline
comment */
CTRL + /:
// single line comment
Windows: File > Preferences > Keyboard Shortcuts.
MacOS: Code > Preferences > Keyboard Shortcuts.
You can search through the list both by keybindings (key names) and command names.
Read: How to set shortcuts from another text editor (Sublime, Atom etc)?
Official docs: Key Bindings for Visual Studio Code