Top 5 Visual Studio code keyboard shortcuts every coder should know for Windows.
1. Zen Mode
Zen Mode is a distraction-free environment, free from toolbars and other UI elements allowing us to focus on our code.
Command: Ctrl + K, Then Z
2. Move the line up/down
An easy way to simply move a line of code up or down.
Command: Alt + Up/Down Arrow
3. Adding multiple cursors
Allows a coder to make the same edits at multiple places.
Command: Ctrl + Alt + Up/Down Arrow
4. Delete line
Quickly delete a complete line.
Command: Ctrl + Shift + K
5. Comment lines
Quickly turn multiple lines into comments at once.
Command: Ctrl + K, Then Ctrl + C
4 likes