提交 0f6fd4bc 编写于 作者: A Alex Ross

Fix configure task quick pick skip

上级 8bf1e8e1
......@@ -2571,8 +2571,11 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
})]);
if (!timeout && ((await entries).length === 1) && this.configurationService.getValue<boolean>(QUICKOPEN_SKIP_CONFIG)) {
handleSelection(<EntryType>((await entries)[0]));
return;
const entry: any = <any>((await entries)[0]);
if (entry.task) {
handleSelection(entry);
return;
}
}
this.quickInputService.pick(entries,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册