mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
Add option to skip sorting QuickPick items (#73904)
This commit is contained in:
@@ -475,9 +475,9 @@ export interface TransferQuickPick extends BaseTransferQuickInput {
|
||||
|
||||
matchOnDescription?: boolean;
|
||||
|
||||
sortByLabel?: boolean;
|
||||
|
||||
matchOnDetail?: boolean;
|
||||
|
||||
sortByLabel?: boolean;
|
||||
}
|
||||
|
||||
export interface TransferInputBox extends BaseTransferQuickInput {
|
||||
|
||||
@@ -54,7 +54,6 @@ export class ExtHostQuickOpen implements ExtHostQuickOpenShape {
|
||||
placeHolder: options && options.placeHolder,
|
||||
matchOnDescription: options && options.matchOnDescription,
|
||||
matchOnDetail: options && options.matchOnDetail,
|
||||
sortByLabel: options && options.sortByLabel,
|
||||
ignoreFocusLost: options && options.ignoreFocusOut,
|
||||
canPickMany: options && options.canPickMany
|
||||
}, token);
|
||||
|
||||
Reference in New Issue
Block a user