-
Notifications
You must be signed in to change notification settings - Fork 29.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] Auto-enable extensions per session #72255
Comments
I also recommend feature request, but ".code-workspace" workspace configurations in vscode would be best place for this. |
Also, I saw few other configurations conflict issues when multiple developers working in a project(By setup their own preference causing project quality). If we able to list out required plugins in a workspace configuration(.code-workspace) for auto-installation would be grateful. If it's implemented then each project controlled by it's own .code-workspace configurations file to install required plugins and it's configurations apply to it's project. |
@ArulDhandapani If you like the feature request, please upvote it. I think that's how the vscode team prioritizes new features. (Unless the team members personally want the feature as well.) |
Is it dupe of #61723? |
@whut This issue is simpler and to the point. That other issue is too complicated, and that's a guarantee it'll never be implemented. It needs to be automatic, without extra commands. |
Duplicate of #40239 |
We develop apps in node, asp.net, and python. We have extensions for each platform, so my vscode has almost 50 extensions, and some conflict with each other.
Switching between projects is challenging, as I need to disable/enable various extensions.
It would be nice to have something similar to
.vscode/extensions.json
, but it enables specific extensions for that workspace. Let's call it.vscode/session.json
for example.So by default all the extensions would be installed, but not enabled. When I'd open a workspace with a
.vscode/session.json
, the extensions in that file would be automatically enabled, for that session only.Maybe we could reuse
.vscode/extensions.json
like this:The text was updated successfully, but these errors were encountered: