Reputation: 391
I have tried to changed the short cut for "Go To File" command, and might have deleted it by mistake. how can I restore it?
Upvotes: 1
Views: 323
Reputation: 182661
With the Keyboard Shortcuts
UI open (from the Gear icon), click on the odd Open Keyboard Shortcuts (JSON)
icon on the right of the tab bar (or trigger the exact same command from the Command Palette).
In that file you will find something like:
{
"key": "ctrl+e",
"command": "-workbench.action.quickOpen"
},
(just do a find for that command). Delete that negated keybinding - note the leading -
before the command which removes it (or comment it out) and it will reactivate.
Upvotes: 1