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
Is there a way to set the task arguments when the task is part of another task?
For example when running Task start cmake debug it will call build but the task_arguments for build will not be applied (--parallel) but it works when calling the task directly Task start cmake build
The text was updated successfully, but these errors were encountered:
How would I do that exactly? I tried through :Task set_task_param cmake build args but that only works for :Task start cmake build and not for :Task start cmake debug.
Or do you mean by injecting a custom task with the parameters hardcoded as described in the last sentence of the readme?
Apart from that the plugin works great, thanks for the work :).
I thought that you can configure args for build in your config and that they would be propagated to the run command. But I was wrong.
I think we should add a way to configure it, but I not sure about the design. Suggestions are welcome.
Apart from that the plugin works great, thanks for the work :).
Is there a way to set the task arguments when the task is part of another task?
For example when running
Task start cmake debug
it will callbuild
but the task_arguments forbuild
will not be applied (--parallel) but it works when calling the task directlyTask start cmake build
The text was updated successfully, but these errors were encountered: