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
When generating a tasks.json we always set the isWatching to false, however we could use a simple heuristic to set this to true if a task name has 'watch' in the name. IMHO this heuristic could work nicely in practice.
To repro, just generate tasks.json for vscode repo
The text was updated successfully, but these errors were encountered:
@isidorn nice idea, but not easy to realize. The problem is that when in watching mode you need special regular expression to determine in the output when the task is active and when inactive. Otherwise the spinner will not stop :-).
For task 2.0.0 I implemented that isBackground will be true if the associated matcher has a background property. This is a stronger indication than a name.
Related to #4019
When generating a
tasks.json
we always set theisWatching
tofalse
, however we could use a simple heuristic to set this totrue
if a task name has 'watch' in the name. IMHO this heuristic could work nicely in practice.To repro, just generate
tasks.json
for vscode repoThe text was updated successfully, but these errors were encountered: