How to remove keyboard shortcuts from VSCode - kdaisho/Blog GitHub Wiki
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.
- Open
Default Keybindings (JSON) - Search the keybindings with
ctrl+shift+c - Copy the object
{ "key": "ctrl+shift+c", ...} - Open
keybindings.json - Paste the object in the array
- Prepend
-(dash) to the value of the command"command": "-workbench.action.terminal.openNativeConsole". This disables the shortcut
Done.