-
Notifications
You must be signed in to change notification settings - Fork 30.3k
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
Extensions Recommendations : Can't undo "Don't Show Again for this Repository" #238800
Comments
See #24815 |
Thank you for the link @gjsjohnmurray Well, unfortunately the issue state is:
I don't know what we can do. Based on my little dives into the VSCode codebase, I'm not sure it would be such a big deal to at least develop a part of the request (could be implementing it only for a single storage key first, then go generic). |
/duplicate |
Thanks for creating this issue! We figured it's covering the same as another one we already have. Thus, we closed this one as a duplicate. You can search for similar existing issues. See also our issue reporting guidelines. Happy Coding! |
@sandy081 Are we stuck with conversation locked 2017 issue ? It seems @meganrogge implemented once a solution (#114114) but it has been closed, not merged. If at least someone with collaborator access could give a state update to the main github issue #24815 as it's locked. Thanks 🙏 |
Hi @kevinmarrec Unfortunately #24815 is not in our near term Roadmap, hence it is not being attended. We will get back to this when it gets prioritised in our Roadmap. Unfortunately, I do not have any timeline. Sorry about that. Thanks for understanding. CC @bpasero |
Environment
Does this issue occur when all extensions are disabled ?
Not applicable
Description
When a workspace provide a
.vscode/extensions.json
file to provide extensions recommendations, a notification is displayed and there's an option to never show it again for this workspace.If clicked, it saves the action as a Workspace state entry which can't be undone from VSCode UI or configuration files.
The only way to undo it seems to either re-install VSCode or manually delete workspace states but I don't consider it as viable solution for the following reasons : not user friendly, not documented and therefore especially not error proof.
Here's the storage key that can't be unset forever :
https://github.com/microsoft/vscode/blob/main/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.ts#L44
Solution
Provides a VSCode command (F1) that would reset this action. (Ex: "Workspace: Reset extensions recommendations notifications")
Two possible implementations :
true
tofalse
in the workspace stateThe text was updated successfully, but these errors were encountered: