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.
configure
this
1 parent a4071cf commit 78d4808Copy full SHA for 78d4808
src/vs/workbench/contrib/tasks/browser/abstractTaskService.ts
@@ -2953,7 +2953,6 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
2953
// eat the error, it has already been surfaced to the user and we don't care about it here
2954
});
2955
}
2956
-
2957
const chooseAndRunTask = (tasks: Task[]) => {
2958
this._showIgnoredFoldersMessage().then(() => {
2959
this._showQuickPick(tasks,
@@ -2968,7 +2967,7 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
2968
2967
return;
2969
2970
if (task === null) {
2971
- configure();
+ configure.apply(this);
2972
2973
2974
runSingleTask(task, { attachProblemMatcher: true }, this);
0 commit comments