Skip to content

Commit 9ec1b24

Browse files
authored
Merge pull request #42 from gjsjohnmurray/fix-41
fix #41 make pickServer API respect ignoreFocusOut option if passed
2 parents b5c5b87 + 12492c4 commit 9ec1b24

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/api/pickServer.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export async function pickServer(scope?: vscode.ConfigurationScope, options: vsc
2323
quickPick.placeholder = options.placeHolder;
2424
quickPick.matchOnDescription = options.matchOnDescription || true;
2525
quickPick.matchOnDetail = options.matchOnDetail || false;
26+
quickPick.ignoreFocusOut = options.ignoreFocusOut || false;
2627
quickPick.items = qpItems;
2728
const btnAdd: vscode.QuickInputButton = { iconPath: new vscode.ThemeIcon('add'), tooltip: 'Define New Server' }
2829
quickPick.buttons = [btnAdd];

0 commit comments

Comments
 (0)