Master Your Workflow with These Essential VS Code Shortcuts

Simon Zeru Image

Simon Zeru

January 14, 2025 (2mo ago)

As a developer, efficiency is essential. VS Code, with its wide range of shortcuts, can significantly speed up your workflow. Whether you're formatting your code, navigating files, or managing multiple cursors, these shortcuts are game-changers. Let's dive into some of the most useful ones, including a few hidden gems every developer should know.

1. Selections and Occurrences

Video of selecting all occurrences Need to rename a variable or modify repeated text? Select all occurrences at once:

Personally, I've changed the shortcut to be more efficient than the native one:

It's perfect for quick refactoring or applying changes to multiple instances.

Select an entire line

Video of selecting a line Highlighting a line manually is a waste of time. Use this shortcut to instantly select the current line:

This also works for selecting multiple lines if you press the shortcut multiple times.

To select just a word, use Ctrl + D. You can also select multiple words by repeating the shortcut.

To select all the content in the file, use Ctrl + A.

2. Code Formatting: Keep Your Code Clean

Video of code formatting

Nobody likes messy code. Quickly format your file to maintain consistent indentation with:

Video of folding regions When your file is cluttered with multiple functions or regions, use this to focus on what's important:

I prefer using Ctrl + Shift + (-) to close all regions/functions.

To reopen regions/functions, use:

I prefer using Ctrl + Shift + (+) to open all regions/functions.

3. Duplicating and Moving Lines

Video of duplicating lines To duplicate an entire line, use: **Alt + Shift + ↓/↑*. To move the line up or down, use Alt + ↓/↑.

Video of multiple cursors

To duplicate the cursor to edit multiple lines simultaneously, use Ctrl + Alt + ↓/↑ (Windows/Linux) or Cmd + Option + ↓/↑ (Mac). To add an additional cursor, press

Sometimes you need to modify the same thing in multiple places simultaneously. Duplicate your cursor and take control:

4. Quickly Navigate Files

Video of navigating files

I feel sorry for those who navigate files with the mouse. Besides wasting a lot of time, you also lose your focus. Use these shortcuts to quickly navigate between files:

I've set it to Ctrl + E to open the command palette, faster than the native shortcut.

5. GitHub Copilot

How to save a lot of time? Use GitHub Copilot, a VS Code extension that generates code for you.

Image of GitHub Copilot

Here are some shortcuts to use it:

Here are some bonus shortcuts for GitHub Copilot:

Note: these shortcuts are not available by default, you need to configure them in the VS Code shortcut settings (go to Ctrl + K + S or Cmd + K + S).

Bonus Shortcuts

Here are some other handy shortcuts you might not know:

Why Learn Shortcuts?

Shortcuts are not just about saving a few seconds, they are about maintaining flow. When your hands stay on the keyboard, you stay immersed in your code. Over time, these micro-efficiencies add up, allowing you to focus more on problem-solving and writing quality code.