We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6f91ee commit 12492c4Copy full SHA for 12492c4
src/api/pickServer.ts
@@ -23,6 +23,7 @@ export async function pickServer(scope?: vscode.ConfigurationScope, options: vsc
23
quickPick.placeholder = options.placeHolder;
24
quickPick.matchOnDescription = options.matchOnDescription || true;
25
quickPick.matchOnDetail = options.matchOnDetail || false;
26
+ quickPick.ignoreFocusOut = options.ignoreFocusOut || false;
27
quickPick.items = qpItems;
28
const btnAdd: vscode.QuickInputButton = { iconPath: new vscode.ThemeIcon('add'), tooltip: 'Define New Server' }
29
quickPick.buttons = [btnAdd];
0 commit comments