Removing keyboard shortcuts
To remove a keyboard shortcut in VS Code :
- Open keyboard shortcuts editor using Open keyboard shortcutsin the command palette.
- Find the shortcut you wish to remove by searching for the command name or the shortcut itself.
- Right click on the shortcut and select ‘Remove Keybinding’.
This is especially helpful when multiple extensions contribute conflicting shortcuts.
You can also edit the keybindings.json file to remove a shortcut. Simply prefix the command you wish to unbind with -:
{
	"key": "cmd+\\",
	"command": "-workbench.action.splitEditor"
}
