Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

showInstalledExtensions not found

So I’m using VS code in my Windows machine and I’ve customized my keybindings and have this shortcut.

Show/Hide installed extensions

keybindings.json
{
    "key": "ctrl+k ctrl+x",
    "command": "workbench.extensions.action.showInstalledExtensions"
},

It’s working fine before until now that I pressed the shortcut ctrl+k ctrl+x, it’s not working anymore and I’m getting the error below.

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

'workbench.extensions.action.showInstalledExtensions' not found

I tried removing and re-adding that specific binding to see if it will work, but still the error persists.

>Solution :

Did you check the Default Keybindings?

This is the default from what I see on mine.

{ "key": "ctrl+shift+x",          "command": "workbench.view.extensions",
                                  "when": "viewContainer.workbench.view.extensions.enabled" },

So in your case you can update it as follows

{
    "key": "ctrl+k ctrl+x",
    "command": "workbench.view.extensions",
    "when": "viewContainer.workbench.view.extensions.enabled"
},
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading