You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are many many VSCode extensions that abuse or displays wrong notifications. Sometimes, the notification is useless and spammy, sometimes, it is just bugged.
Examples:
Those 2 notifications pops up every time I save a file in VSCode. There is a bug on dart-import extension and the project seems dead (but the extension is still useful and relevant).
In this case, the notification is useless. When triggering this extension on save, those notifications fills the entire queue and occupy the bottom space of the screen.
I had to install a 3rd extension just to fix things on save:
If the extenion is .dart, I call the dart-import extension to do its magic, then I save the file, then I hide all toasts to clear the spam (and losing useful toasts, if there is any).
It is impossible to ask for each extension developer to not misuse the notification system, nor can I fork and fix EVERY extension I use, so...
block will prevent that extension of showing toasts (nothing happens, the toasts simply doesn't appear, hidden or not). hide will not display the notification on screen, but will trigger the unread notification icon:
The text was updated successfully, but these errors were encountered:
There are many many VSCode extensions that abuse or displays wrong notifications. Sometimes, the notification is useless and spammy, sometimes, it is just bugged.
Examples:
Those 2 notifications pops up every time I save a file in VSCode. There is a bug on dart-import extension and the project seems dead (but the extension is still useful and relevant).
In this case, the notification is useless. When triggering this extension on save, those notifications fills the entire queue and occupy the bottom space of the screen.
I had to install a 3rd extension just to fix things on save:
If the extenion is
.dart
, I call thedart-import
extension to do its magic, then I save the file, then I hide all toasts to clear the spam (and losing useful toasts, if there is any).It is impossible to ask for each extension developer to not misuse the notification system, nor can I fork and fix EVERY extension I use, so...
What I'm proposing is something like this:
block
will prevent that extension of showing toasts (nothing happens, the toasts simply doesn't appear, hidden or not).hide
will not display the notification on screen, but will trigger the unread notification icon:The text was updated successfully, but these errors were encountered: