Skip to content

Commit 7ddda59

Browse files
committed
Fix tasks fuzzy match in quick acceses
Fixes microsoft#94891
1 parent 723175e commit 7ddda59

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/contrib/tasks/browser/tasksQuickAccess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class TasksQuickAccessProvider extends PickerQuickAccessProvider<IPickerQ
5050
const taskPicks: Array<IPickerQuickAccessItem | IQuickPickSeparator> = [];
5151

5252
for (const entry of topLevelPicks.entries) {
53-
const highlights = matchesFuzzy(filter, entry.label!, true);
53+
const highlights = matchesFuzzy(filter, entry.label!);
5454
if (!highlights) {
5555
continue;
5656
}

0 commit comments

Comments
 (0)