Skip to content
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

How to re-enable 'extension-tips-service', after pressing "Don't show again"? #23314

Closed
vimkim opened this issue Mar 27, 2017 · 5 comments
Closed
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug
Milestone

Comments

@vimkim
Copy link

vimkim commented Mar 27, 2017

I accidently pressed "don't show again' for the help message prompted.

I cannot receive any recommendations for extensions or other helpful info after that.
How do I re-enable this feature?

In addition to that, I have a feature request related with this issue.

Feature request:

Please get rid of the button
don't show it again
and replace it with a small message something like:
To disable this message, turn off "extension-tips-service":true in settings.json.

Please make it easy for us (the users) to toggle certain features, not one-sided. It's very time-consuming to find a way to revert it back.

@jrieken jrieken assigned joaomoreno and unassigned jrieken Mar 28, 2017
@joaomoreno joaomoreno added this to the Backlog milestone Mar 28, 2017
@joaomoreno joaomoreno added the bug Issue identified by VS Code Team member as probable bug label Mar 28, 2017
@joaomoreno
Copy link
Member

Open the Developer Tools, Application tab, local storage. Delete the storage://global/extensionsassistant/importantrecommendationsignore key.

@vimkim
Copy link
Author

vimkim commented Mar 29, 2017

Oh, thank you for prompt reply! Now it works fine again. I didn't know that there was such a nice interface for doing this. Considering that, I guess it might be unnecessary to make it as an option for settings.json as I proposed before. Maybe that would make my settings.json too bulky. Just, please forget about that.

However, I would still appreciate if the information to re-activate such feature is intuitively written somewhere. For example, after pressing don't show again, showing a prompt with the message you can always re-activate this extension-tips-service by doing ... would be very helpful. I saw a lot of kind programs following this approach. :)

@joaomoreno
Copy link
Member

Thanks for the feedback!

@OliverJAsh
Copy link
Contributor

I can second @dqgthb’s desire here. I had to use Google to find this issue to reset my settings.

@stefb965
Copy link

stefb965 commented Apr 15, 2017

photo

  • $# Assignment: number = 42 opposite = true # Conditions: number = -42 if opposite # Functions: square = (x) -> x * x # Arrays: list = [1, 2, 3, 4, 5] # Objects: math = root: Math.sqrt square: square cube: (x) -> x * square x # Splats: race = (winner, runners...) -> print winner, runners # Existence: alert "I knew it!" if elvis? # Array comprehensions: cubes = (math.cube num for num in list) var cubes, list, math, num, number, opposite, race, square, slice = [].slice; number = 42; opposite = true; if (opposite) { number = -42; } square = function(x) { return x * x; }; list = [1, 2, 3, 4, 5]; math = { root: Math.sqrt, square: square, cube: function(x) { return x * square(x); } }; race = function() { var runners, winner; winner = arguments[0], runners = 2 <= arguments.length ? slice.call(arguments, 1) : []; return print(winner, runners); }; if (typeof elvis !== "undefined" && elvis !== null) { alert("I knew it!"); } cubes = (function() { var i, len, results; results = []; for (i = 0, len = list.length; i < len; i++) { num = list[i]; results.push(math.cube(num)); } return results; })();

 https://goo.gl/photos/YcKWwfgPXpi86PHy8

@vscodebot vscodebot bot locked and limited conversation to collaborators Nov 18, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug
Projects
None yet
Development

No branches or pull requests

5 participants