Enable a tooltip in quick pick (#174417)

* hover in quickpick

* refactoring

* fix tests

* remove HTMLElement from API for now

* API proposal
This commit is contained in:
Tyler James Leonhardt
2023-02-15 08:35:09 -08:00
committed by GitHub
parent 89907df37d
commit f861acbee1
12 changed files with 257 additions and 18 deletions

View File

@@ -670,7 +670,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
return <Thenable<any>>extHostMessageService.showMessage(extension, Severity.Error, message, rest[0], <Array<string | vscode.MessageItem>>rest.slice(1));
},
showQuickPick(items: any, options?: vscode.QuickPickOptions, token?: vscode.CancellationToken): any {
return extHostQuickOpen.showQuickPick(items, options, token);
return extHostQuickOpen.showQuickPick(extension, items, options, token);
},
showWorkspaceFolderPick(options?: vscode.WorkspaceFolderPickOptions) {
return extHostQuickOpen.showWorkspaceFolderPick(options);