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
The run task command can result in a lot of entries/options. Users want to be able to setup a keybinding to trigger a more refined search of this list. The old way of doing this was to provide a string as the args in the form of the task's label (for example, VS Code - Build).
There are two new arguments we support:
taskName: the task's label (for example, VS Code - Build) if there's an exact match or will be used as a filter. Note that this will take precedence over the type
type: the task's type that corresponds to the type property found in the tasks.json file that indicates the extension owner, shell, or process.
The format is args: { taskName?: string, type?: string}
Setup some keybindings and verify that the old and new arguments work.
Refs #153145 and #154201
The run task command can result in a lot of entries/options. Users want to be able to setup a keybinding to trigger a more refined search of this list. The old way of doing this was to provide a string as the
args
in the form of the task's label (for example,VS Code - Build
).There are two new arguments we support:
taskName
: the task's label (for example,VS Code - Build
) if there's an exact match or will be used as a filter. Note that this will take precedence over thetype
type
: the task's type that corresponds to thetype
property found in thetasks.json
file that indicates the extension owner,shell
, orprocess
.The format is
args: { taskName?: string, type?: string}
Setup some keybindings and verify that the old and new arguments work.
Authors: @meganrogge @Tyriar
Complexity: 2
Create Issue
Known issues:
runTask
command #155087The text was updated successfully, but these errors were encountered: