Home > Net >  How to restore an accidentally deleted keyboard shortcut from a VSCode extension?
How to restore an accidentally deleted keyboard shortcut from a VSCode extension?

Time:09-22

I was configuring It's supposed to show F5 shortcut in first result

Not sure if it is something related to this extension specifically, but even if I reinstalled it and reloaded VSCode, the mentioned shortcut won't show up. I think my configuration is cached somewhere (I wonder where). How can I restore it?

CodePudding user response:

If it was a key binding than there has to be a command that has the functionality. Most likely that command can also be accessed from the Command Palette. Or you can find the commands exported by the extension on the Feature Contributions tab of the extensions page (Extension Bar)

If the binding is defined in the extension you can't loose/delete it, than probably you have defined another command to F5.

View/Delete/Save your keybinding.json or use the key binding debugging

  • Related