提交 e385a773 编写于 作者: B Benjamin Pasero

quick access - use fuzzy matching consistently also for tasks

上级 b418b9cd
......@@ -96,7 +96,7 @@ export class TasksQuickAccessProvider extends PickerQuickAccessProvider<IPickerQ
private fillPicks(taskPicks: Array<IPickerQuickAccessItem | IQuickPickSeparator>, input: string, tasks: Array<CustomTask | ContributedTask>, groupLabel: string): void {
let first = true;
for (const task of tasks) {
const highlights = matchesFuzzy(input, task._label);
const highlights = matchesFuzzy(input, task._label, true);
if (!highlights) {
continue;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册