Update quick pick

This commit is contained in:
Jackson Kearl 2021-07-14 16:59:00 -07:00
parent 892785264b
commit 5708205e09
No known key found for this signature in database
GPG key ID: DA09A59C409FC400

View file

@ -240,7 +240,8 @@ registerAction2(class extends Action2 {
id: x.id,
label: x.title,
detail: x.description,
})), { canPickMany: false, title: localize('pickWalkthroughs', "Open Walkthrough...") });
description: x.source,
})), { canPickMany: false, matchOnDescription: true, matchOnDetail: true, title: localize('pickWalkthroughs', "Open Walkthrough...") });
if (selection) {
commandService.executeCommand('workbench.action.openWalkthrough', selection.id);
}