Boost Productivity with Visual Studio Code Key Bindings Management

Visual Studio Code, Microsoft’s lightweight source code editor introduces keyboard-only navigation that’s not only an advanced accessibility feature, allowing users to navigate within the editor without a mouse, but also speeds up coding.

In today’s post, we’ll delve into how to effectively manage key bindings in VS Code, have a look at a curated list of the most commonly used keyboard shortcuts, and see an example on how you can create your own custom keys.

Find Key Bindings Quickly

You don’t necessarily need to learn keyboard shortcuts by heart right when you begin to use VS Code, as there are two easy ways to quickly find them.

In the top menu bar, you can find the preset key binding next to every menu point (1), and the Command Palette (F1) also lists them next to each command (2).

Visual Studio Code displays key bindings that match to your operating system by default (so on a Windows machine you’ll see the Windows commands, on a Mac the Mac commands, and on a Linux box the Linux commands).

If you don’t mind to leave your code editor, you can also find the full list of preset key bindings in the VS Code Docs.

Preset Key Bindings

Visual Studio Code provides developers with many key bindings, in the following list I curated those I’ve used the most often while edited JavaScript files. You may find that others fit better to your own workflow, so it’s also worth browsing the full list by yourself.

All key bindings can be customized in VS Code, we will have a look at how to do that in the last part of this article.

Now let’s see 36 frequently used keyboard shortcuts, respectively for the 3 main operating systems (Win, OS X, Linux), many of which may be familiar from other Microsoft softwares.

Navigation

  1. F1 (Win, Linux, Mac) – Command Palette, shows all commands of which you can select one, or you can also type a command by yourself
  2. Ctrl + P (Win, Linux), Cmd + P (Mac) – Quick open, Go to file
  3. Ctrl + Shift + O (Win, Linux), Shift + Cmd + O (Mac) – Show a list of all symbols (such as functions, prototypes, etc.) in the current file
  4. Ctrl + G (Win, Linux, Mac) – Go to a specific line
  5. Ctrl + Shift + M (Win, Linux), Shift + Cmd + M (Mac) – Show all errors and warnings
  6. Alt + Left (Win), Ctrl + (Mac), Ctrl + Alt + (Linux) – Go back, the cursor jumps back to its previous location
  7. Alt + Right (Win), Ctrl + Shift + (Mac), Ctrl + Shift + (Linux) – Go forward, the cursor jumps forward to its next location
  8. ? (Win, Linux, Mac) – Commands that are available for the current file inside the Command Palette (before using this, you need to open the Command Palette (F1)

File and Editor Management

You can find the full list for this section in two different places in the VS Code Docs, in Editor/Window Management, and in File Management.

VS Code can open 3 editor panes at the same time, Commands #5 to #7 only work if more than one editor panes are open.

  1. Ctrl + N (Win, Linux), Cmd + N (Mac) – New file
  2. Ctrl + O (Win, Linux) – Open file
  3. Ctrl + S (Win, Linux), Cmd + S (Mac) – Save
  4. Ctrl + \ (Win, Linux), Cmd + \ (Mac) – Split editor
  5. Ctrl + 1 (Win, Linux), Cmd + 1 (Mac) – Focus into the first editor pane
  6. Ctrl + 2 (Win, Linux), Cmd + 2 (Mac) – Focus into the second editor pane
  7. Ctrl + 3 (Win, Linux), Cmd + 3 (Mac) – Focus into the third editor pane
Visual Studio Code Editor Panes

Basic Editing

To make the key bindings below work, you don’t have to highlight the whole line, it’s enough to navigate the cursor anywhere in the line you want to edit.

  1. Ctrl + X (Win, Linux), Cmd + X (Mac) – Cut line
  2. Ctrl + C (Win, Linux), Cmd + C (Mac) – Copy line
  3. Ctrl + Shift + K (Win, Linux), Shift + Cmd + K (Mac) – Delete line
  4. Alt + Down (Win, Linux), Option + Down (Mac) – Move line down
  5. Alt + Up (Win, Linux), Option + Up (Mac) – Move line up
  6. Ctrl + I (Win, Linux), Cmd + I (Mac) – Select current line
  7. Ctrl + ] (Win, Linux), Cmd + ] (Mac) – Indent line
  8. Ctrl + [ (Win, Linux), Cmd + [ (Mac) – Outdent line

Rich Languages Editing

Currently, as of May 2016, VS Code has built-in rich editing support for JavaScript and TypeScript, but you can download language support extensions for many other languages from the VS Code Marketplace.

Here in the Docs you can check out the options you have for the language you want to use. Note that as VS Code is still in its early days, rich editing support may come for other languages as well.

  1. Ctrl + Space (Win, Linux, Mac) – Trigger suggest
  2. Ctrl + Shift + Space (Win, Linux), Shift + Cmd + Space (Mac) – Trigger parameter hints
  3. Alt + F12 (Win), Option + F12 (Mac), Ctrl + Shift + F10 (Linux) – Peek definition
  4. Shift + F12 (Win, Linux, Mac) – Show references
  5. Ctrl + Shift + X (Win, Linux), Shift + Cmd + X (Mac) – Trim trailing whitespace

Display

  1. F11 (Win, Linux), Ctrl + Cmd + F (Mac) – Toggle full screen
  2. Ctrl + = (Win, Linux), Cmd + = (Mac) – Zoom in
  3. Ctrl + (Win, Linux), Cmd + (Mac) – Zoom out
  4. Ctrl + B (Win, Linux), Cmd + B (Mac) – Toggle sidebar visibility
  5. Ctrl + Shift + D (Win, Linux), Shift + Cmd + D (Mac) – Show Debug in the sidebar (on the left)
  6. Ctrl + Shift + E (Win, Linux), Shift + Cmd + E (Mac) – Show Explorer in the sidebar (on the left)
  7. Ctrl + Shift + G (Win, Linux, Mac) – Show Git in the sidebar (on the left)
  8. Ctrl + Shift + F (Win, Linux), Shift + Cmd + F (Mac) – Show Search in the sidebar (on the left)

How to Customize Key Bindings in VS Code

Customizing key bindings can be useful for three main things.

Firstly, if you have already got used to certain keyboard shortcuts in a different code editor, you don’t need to learn new ones.

Secondly, some of the preset key bindings are just too hard to remember, for instance take the Ctrl + K + F12 Windows shortcut for the command Open definition to the side.

Thirdly, there are also unassigned key bindings in VS Code, such as Open User Settings, and Open Workspace Settings (find them here in the Docs) you may want to use them.

You can customize key bindings with the help of a JSON format configuration file, in a way similar to how you can customize User and Workspace Settings. The file you need to edit is called keybindings.json, and you can open it by clicking on the File > Preferences > Keyboard Shortcuts menu in the top menu bar.

When you click on it, VS Code opens two editor panes next to each other, one for the default keyboard shortcuts on the left, and one for your customized key bindings on the right.

You don’t have to do anything else, just copy-paste the keys from the left to the right maintaining the JSON format, and rewrite the key to the custom one.

Visual Studio Code Custom Key Bindings

Let’s see a quick example. Say you want to easily access the Show Installed Extensions command that doesn’t have an assigned key binding by default. In this case, it’s not enough to only copy-paste from the left side to the right, as unassigned keys aren’t included in the default list.

You’ll need to stick to the syntax key bindings follow in Visual Studio Code:

	{ "key": "", "when": "", "command": "" }

Check out some real-life examples on how to properly set keyboard rules. The when part is optional, you don’t have to use it to set global key bindings, it’s only used when a certain shortcut is bound to a certain screen or mode, such as in the case of inDebugMode.

In our example, we will set a global key binding, which means we only have to set the values of “key” and “command” in our custom keyboard rule.

First, let’s look up the command id that belongs to the Show Installed Extension command. We can easily do this in the docs, that shows us that the command id we need is workbench.extensions.action.listExtensions.

The other piece of data we need is the key. The custom key we will bind to the Show Installed Extension command cannot be used by any other key binding rules, and must follow the proper key syntax, which means it needs to be made of a modifier (see the accepted modifiers by OS), and the key itself.

As I work on a Windows machine, I’ll choose the Ctrl + F6 key, as it meets every requirement, but you can choose any other key that suits your needs the best.

My keybindings.json file will look like this:

// Place your key bindings in this file to overwrite the defaults
[ { "key": "Ctrl + f6",
  	"command": "workbench.extensions.action.listExtensions" } ]

The new rule takes effect at once, as Visual Studio Code updates the rules at runtime. You can test it without restarting the editor, you just need to press Ctrl + F6, or the key you chose, and a list of your installed extensions will pop up in your editor.

In the screenshot below, you can see my testing results, on pressing Ctrl + F6, I got a list of the two extensions I currently have.

Visual Studio Code Installed Extensiions

You can add as many rules as you want to your keybindings.json file. Just follow the regular JSON syntax, which means you need to place each rule inside a pair of curly brackets, and separate them with a comma, as you can see below.

// Place your key bindings in this file to overwrite the defaults
[ {	"key": "Ctrl + f6",
  	"command": "workbench.extensions.action.listExtensions" },
	{	"key": "Shift + f6",
  	"command": "workbench.extensions.action.installExtension" } ]
WebsiteFacebookTwitterInstagramPinterestLinkedInGoogle+YoutubeRedditDribbbleBehanceGithubCodePenWhatsappEmail