You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.addInput(`readyTimeout`,l10n.t(`Connection Timeout (in milliseconds)`),l10n.t(`How long to wait for the SSH handshake to complete.`),{inputType: "number",min: 1,default: "20000"})
33
32
.addHorizontalRule()
34
33
.addParagraph(l10n.t(`Only provide either the password or a private key - not both.`))
.addFile(`privateKeyPath`,l10n.t(`Private Key`),l10n.t(`OpenSSH, RFC4716, or PPK formats are supported.`));
36
+
.addFile(`privateKeyPath`,l10n.t(`Private Key`),l10n.t(`OpenSSH, RFC4716, or PPK formats are supported.`))
37
+
.addHorizontalRule()
38
+
.addInput(`readyTimeout`,l10n.t(`Connection Timeout (in milliseconds)`),l10n.t(`How long to wait for the SSH handshake to complete.`),{inputType: "number",min: 1,default: "20000"});
38
39
39
40
consttempTab=newSection()
40
41
.addInput(`tempLibrary`,`Temporary library`,`Temporary library. Cannot be QTEMP.`,{default: `ILEDITOR`,minlength: 1,maxlength: 10})
.addInput(`readyTimeout`,vscode.l10n.t(`Connection Timeout (in milliseconds)`),vscode.l10n.t(`How long to wait for the SSH handshake to complete.`),{inputType: "number",min: 1,default: stored.readyTimeout ? String(stored.readyTimeout) : "20000"})
366
365
.addHorizontalRule()
367
366
.addParagraph(vscode.l10n.t(`Only provide either the password or a private key - not both.`))
368
367
.addPassword(`password`,`${vscode.l10n.t(`Password`)}${storedPassword ? ` (${vscode.l10n.t(`stored`)})` : ``}`,vscode.l10n.t("Only provide a password if you want to update an existing one or set a new one."))
369
368
.addFile(`privateKeyPath`,`${vscode.l10n.t(`Private Key`)}${privateKeyPath ? ` (${vscode.l10n.t(`Private Key`)}: ${privateKeyPath})` : ``}`,privateKeyWarning+vscode.l10n.t("Only provide a private key if you want to update from the existing one or set one.")+'<br />'+vscode.l10n.t("OpenSSH, RFC4716 and PPK formats are supported."))
369
+
.addHorizontalRule()
370
+
.addInput(`readyTimeout`,vscode.l10n.t(`Connection Timeout (in milliseconds)`),vscode.l10n.t(`How long to wait for the SSH handshake to complete.`),{inputType: "number",min: 1,default: stored.readyTimeout ? String(stored.readyTimeout) : "20000"})
0 commit comments