-
Notifications
You must be signed in to change notification settings - Fork 30k
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
isWatching confusion #861
Comments
This is still confusing, isn't there a way to watch and still run other tasks? Ideally one should be allowed to run multiple watches like css preprocessors like less, tsc compliation, and still run tests manually. Additionally instead of having watcher, it would be a better if one could trigger a task when certain filetype changes, e.g. I don't need to watch for less if I could just trigger less task when *.less changes. (There are plugins for this, but this should be part of tasks.json) |
Currently there is only support to run one task at a time. Being able to run multiple tasks in parallel is on the backlog. |
See #981 |
[Addressed in new terminal runner] The new runner support running multiple commands in parallel all of which can be background tasks. |
Closing. Task 2.0.0 can run multiple tasks in parallel. |
Started to use vscode for a new project but confused about
isWatching
and what it does.Here's the
tasks.json
config I'm currently using:Initially started with:
But then I try to run
watch
thenbuild-test
, the IDE complains that a task is running.Can someone explain the magic with
"problemMatcher": "$tsc-watch"
?https://github.com/Microsoft/vscode/blob/f0dfc2374892759438a856dfb0bb748fa5f1ae0b/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts#L267
And how file watching works?
https://github.com/Microsoft/vscode-filewatcher-windows/tree/master/FileWatcher
Intuitively, would seem simpler if there were two modes of file watching
"external" | "managed"
The text was updated successfully, but these errors were encountered: