skip to Main Content

Not sure when but when I tried to install Google Code Assist as an extension in VS Code when I was already running Copilot the whole system started to slow down.

So I suspended Copilot, and found Code Assist not doing what I wanted to do.

I wanted to uninstall Code Assist but VSCode wouldn’t allow that.

I then tried to reinstall Copilot as that stopped working.

First of all it appears that I can’t load any extension and have to download them …

enter image description here

And then install them.

enter image description here

But they don’t work any more.

What can I do to get them working any more?

2

Answers


  1. Few of the Suggestions –

    1.Reinstalling Extensions: If an extension stopped working or became unresponsive, try reinstalling it. You can do this by searching for the extension in the Extensions view (Ctrl+Shift+X or Cmd+Shift+X on macOS), selecting it, and then choosing the reinstall option.

    2.Review Installed Extensions: Review the list of installed extensions in VS Code to see if there are any other extensions that might be conflicting with Google Code Assist or Copilot. Disable or uninstall any unnecessary or conflicting extensions.

    Login or Signup to reply.
  2. You could add the log into the question since it would add more context on where the extension is failing.
    As for now, delete all files related to those two extensions. You can find them in the vscode extensions folder > provider.extensionName.version, that should give you a fresh install later.

    <EXT> beinggithub.copilot-<VERSION> and GoogleCloudTools.cloudcode-<VERSION> respectively

    by default schemas:

    Linux:

    /home/<YOUR_USER>/.vscode/extensions/<EXT>
    

    WacOS:

    ~/.vscode/extensions/<EXT>
    

    Windows:

    %USERPROFILE%.vscodeextensions<EXT>
    `
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search