Reputation: 1594
From time to time I accidentally hit Ctrl+Shift+D instead of Ctrl+D to duplicate selection (I guess a bad piece of muscle memory from those four weeks when I used Atom). This shortcut removes the contents of the editor and it takes some 4 Undo's to undo it. I can't seem to unbind this shortcut because I cannot find it in the user shorcut preferences. There is a default binding (below) but it seems like something else and overriding it in user shortcuts doesn't change anything.
{ "key": "ctrl+shift+d", "command": "workbench.view.debug",
"when": "viewContainer.workbench.view.debug.enabled" },
I was going to open an issue but Github directed me to SO instead, sorry.
Upvotes: 0
Views: 2333
Reputation: 586
Ctrl+Shift+D in vscode opens Run and Debug View.
Can be remapped using Keyboard shortcuts settings Ctrl+K Ctrl+s
Or you can Remove keybinding
Upvotes: 1