Fixes #38641: Filter task by project name in multi-root

This commit is contained in:
Dirk Baeumer
2017-11-20 11:56:22 +01:00
parent 07501c2c64
commit a706de81d7
@@ -1858,7 +1858,7 @@ class TaskService implements ITaskService {
entries.push(defaultEntry);
}
return entries;
}), { placeHolder, autoFocus: { autoFocusFirstEntry: true } }).then(entry => entry ? entry.task : undefined);
}), { placeHolder, autoFocus: { autoFocusFirstEntry: true }, matchOnDescription: true }).then(entry => entry ? entry.task : undefined);
}
private showIgnoredFoldersMessage(): TPromise<void> {