159

Using Visual Studio Code what is the procedure to:

  • Remap a built in command's keyboard shortcut. For example, say, Open File (default is Ctrl+O, it's unlikely that anyone would actually change this, but the same process should probably apply for any built in shortcut).

  • Remap an extension command's keyboard shortcut, say the Bookmark extension's toggle-bookmark (default Ctrl+Alt+K)

IN 2015, this involved editing configuration JSON files, but I don't know which one, or how. In 2021 there's a new UI, how do I find it?

Warren P
  • 65,725
  • 40
  • 181
  • 316

11 Answers11

205

Click File -> Preferences -> Keyboard shortcuts. Use the tab that opens up to edit and find available key bindings and assign them. Screenshot of VS Code Keyboard Shortcuts window

Open the keybindings.json file using the button in the tab-bar (screenshot below)

button to open keyboards.json


Historical Note: In very early versions of visual studio code, you would Click File -> Preferences -> Keyboard shortcuts and you would get JSON like this keybindings.json:

// Place your key bindings in this file to overwrite the defaults
[
    { "key": "ctrl+o", "command": "workbench.action.files.openFile" },

    { "key": "ctrl+alt+k", "command": "bookmarks.toggle", "when": "editorTextFocus" }
]

Gangula
  • 5,193
  • 4
  • 30
  • 59
Warren P
  • 65,725
  • 40
  • 181
  • 316
53

If you want to change the advance settings of keyboard shortcut such as when then you can follow these steps:

Update:(Thanks @phdoerfler for pointing it out that icon has changed)

File->Preferences->Keyboard Shortcuts Click on icon on top right corner that says "Open Keyboard Shortcuts(JSON)" to open JSON version and place the keybinding.

Image showing icon

You can find this in Documentation here.

noumanniazi
  • 696
  • 7
  • 15
  • 7
    The icon changed. It's no longer a {} but a page with an arrow pointing onto it. The tooltip reads "Open Keyboard Shortcuts (JSON)". You can see it in the top right corner of this screenshot: https://code.visualstudio.com/assets/docs/getstarted/keybinding/open-keyboard-shortcuts-json.png – phdoerfler Oct 06 '19 at 19:25
  • 1
    this only shows defaults, is the pattern really to edit defaults? I don't think it was before. Where is the custom keybindings.json stored? It is gone now. – mathtick Jan 06 '20 at 12:34
  • @mathtick did you find the default keybindings.json? Cannot find it, only my own keybinding json. – Timo Jan 02 '21 at 16:44
  • @Timo I think I did by just searching. I have some keybindings.json file. The most confusing thing is that I think there are different locations that can get picked up ... and I was in some repo that had many copies of different keybindings.json. – mathtick Jan 02 '21 at 20:53
  • 1
    The json file based editing method appears to be gone completely now in May 2021. – Warren P May 14 '21 at 22:01
26

The way to open the JSON file changed yet again in a recent version.

You need to click the middle of the three buttons in the tab bar.

enter image description here

You only need to do that if the change you need isn't possible on the normal settings screen.

Nelu
  • 16,644
  • 10
  • 80
  • 88
  • This is still here in May 2021 but you can edit WHEN conditions without going in here. – Warren P May 14 '21 at 22:04
  • Seems it has changed yet again and can't figure out where they've now hidden the only way to actually edit key bindings. – MrYellow May 15 '23 at 23:09
23

On Windows:

  • go to File -> Preferences -> Keyboard shortcuts,
  • or press Ctrl+K, then Ctrl+S,
  • or edit %UserProfile%\AppData\Roaming\Code\User\keybindings.json file

On Mac:

  • go to Code -> Preferences -> Keyboard shortcuts,
  • or press Cmd+K, then Cmd+S

Keep in mind you can type things like shift ctrl c in the Search input in Keyboard Shortcuts panel to find commands by their keybindings.

Here you can find documentation which among other stuff contains also information about what When conditions you can use.

Community
  • 1
  • 1
Павле
  • 800
  • 5
  • 20
  • the WHEN condition editing is now visually done. The JSON editing parts are probably no longer relevant. – Warren P May 14 '21 at 22:03
6

The latest version of Visual Studio Code 1.11.0 provides a rich and easy keyboard shortcuts editing experience using a new Keyboard Shortcuts editor. Read more here on their website.

Isak La Fleur
  • 4,428
  • 7
  • 34
  • 50
5

FYI on mac the keybindings.json file sits there:

/Users/your_user_name/Library/Application Support/Code/User/keybindings.json

Maxime Beau
  • 688
  • 10
  • 6
5
  1. ctrl + shift + p
  2. Type open keyboard shortcut in the search bar

enter image description here

  1. It opens keyboard Shortcuts. Here you can customize shortcuts.

(For extra info follow from 4th point)

  1. There at the top right corner click on open keyboard shortcuts (JSON) (Refer to the image)

json icon

  1. There you can modify the key, command, and when. That is also cool.

I tried

{
    "key": "ctrl+a",
    "command": "workbench.action.terminal.selectAll",
    "when": "terminalFocus && !isMac"
}

by this now I can select all in vscode terminal

4

I will not repeat others answers! And if like me! You get to install a mapping extension!

My prefered is Visual studio keys map

And the question would have been how you select it! How you change it ! Can we install multiples! And select between them!

First here some useful links about key binding and shortcuts

https://code.visualstudio.com/docs/getstarted/keybindings

https://code.visualstudio.com/docs/getstarted/tips-and-tricks

And before any, know that you can get to the keymaps extension by using the bottom left settings button for settings context menu! As in the picture bellow:

enter image description here

or through file>Preferences>keymap

enter image description here

Then you have to install one of the keymaps

enter image description here

The thing to know is that it will take place and make the changes right away!

What if you install another?

The new one take over! Or some mix! I couldn't tell! And you may have problems!

How you change from one to another?

Remove the old ! remove the new one! And install it again! That's the way that i found it works! Disabling and reenabling didn't work!

And better always let only one installed at a time!

Unfortunitly as by Now 2020-05-08 no options to select between keys mapping exist!

Undo a keymap

Just remove! You may need to restart the editor!

Restart the editor

Also note that if you uninstalled all and reinstalled the one you want! And changes didn't take place! Close the editor and reopen it! That's help!

I hope that's help and may be save you some searching time!

And sure in the future we will have better handling! As vscode is just keeping getting more awesome and awesome! So an option to select and better handling will is expected to be added! And we will wait for it!

Mohamed Allal
  • 17,920
  • 5
  • 94
  • 97
1

On Windows: Ctrl + K, then S

On Mac: + K then + S

This opens Keyboard Shortcuts Editor. It's searchable/filterable by either shortcut name or the key combination itself (example: type "ctrl" to see all bindings to the CTRL key.)

Image: vscode search keyword shortcuts panel

JonahsAttempt
  • 59
  • 1
  • 4
0

To change keybord shortcut bindings in vs go to settings > Keyboard shortcuts

enter image description here

Then You will see this kind of page. In this red color box as I highlighted here you can insert the features such as delete, delete left these kind of activities you can search and then you can edit the keybindings as you wish.

enter image description here

also when you get your mouse pointer near some command it shows pen type icon to edit that specific key. Like this

enter image description here

Bu clicking that one you can add preferred key bindings as well like this.

enter image description here

-1
  1. Open Key Shortcuts from Preferences -> Keyboard Shortcuts
  2. Search for the action in search field
  3. Right click on one of the results and select "Show same keybindings"
  4. Delete the conflicting key binding!
Ayyappa
  • 1,876
  • 1
  • 21
  • 41