vscode: Tasks: Please do not reveal a panel on startup

I opened a multi root workspace where vscode-docs is in and got this:

image

Running this command from the command line does not return an error:

image

It would be great if we could stay away from opening the panel just like that. We already have enough spam from notifications.

About this issue

  • Original URL
  • State: closed
  • Created 6 years ago
  • Reactions: 1
  • Comments: 18 (18 by maintainers)

Commits related to this issue

Most upvoted comments

Question: is this something we need to tell our extension authors too? E.g. are there extensions that open the panel to notify about something similar to what we do with our built in extensions? Or is this actually coming from our tasks code itself?

This is coming from our built in extension, not from the tasks code. If there are task providers showing the output we need to ask them to show a notification instead.

Showing the output channel is too agressive and showing a notification is too aggressive. We actually only do this in the gulp extension, nowhere else. I’ve changed it into a warning notification that directs you to see the output. This will also be helped by https://github.com/Microsoft/vscode/issues/64355 which I’ll be doing next. If, after this fix and the one for https://github.com/Microsoft/vscode/issues/64355 tasks are still too noisy we can find some other options.