We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60180e0 commit 483b4fbCopy full SHA for 483b4fb
src/project/tasks.js
@@ -156,10 +156,10 @@ export default class ProjectTaskManager {
156
) {
157
return;
158
}
159
- vscode.commands.executeCommand('workbench.action.tasks.runTask', {
160
- type: ProjectTaskManager.PROVIDER_TYPE,
161
- task: task.id,
162
- });
+ vscode.commands.executeCommand(
+ 'workbench.action.tasks.runTask',
+ `${ProjectTaskManager.PROVIDER_TYPE}: ${task.id}`
+ );
163
164
165
_autoCloseSerialMonitor(task) {
0 commit comments