Skip to content

How to remove keyboard shortcuts from VSCode

Daisho Komiyama edited this page Nov 22, 2021 · 1 revision

Here are the steps when you want to remove a default keyboard shortcut.

We will remove the shortcut that opens a new (external) terminal window with ctrl+shift+c.

  1. Open Default Keybindings (JSON)
  2. Search the keybindings with ctrl+shift+c
  3. Copy the object { "key": "ctrl+shift+c", ...}
  4. Open keybindings.json
  5. Paste the object in the array
  6. Prepend - (dash) to the value of the command "command": "-workbench.action.terminal.openNativeConsole". This disables the shortcut

Done.

Clone this wiki locally