Home > database >  VSCode: How do I enable one specific extension with all other extensions disabled?
VSCode: How do I enable one specific extension with all other extensions disabled?

Time:01-24

An expected output of a certain extension stopped occurring, so I want to figure out if there is some interference. I used "Reload With Extensions Disabled" to try running the extension in isolation, but apparently I am unable to enable any extensions whatsoever in this mode, which kinda makes sense, but is unintuitive.

How can I achieve the desired effect - running extension(s) with all other extensions disabled?

enter image description here

CodePudding user response:

  • Note: To use Profiles you must currently have the setting Workbench > Experimental > Settings Profiles: Enabled checked (I believe in vscode v1.75 they will be enabled by default, or st least the experimental designation will be removed).

Create a temporary profile: Gear icon/Profiles/Create.../Create a Temporary Profile.

That will reload with all extensions disabled, but you can then quickly install the one particular extension you want to test into that temporary profile.

Then when you are done you can go back to your Default profile the same way (with all your previous extensions enabled) and the temporary profile will be deleted.

  • Related