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
+
.addHorizontalRule()
33
34
.addParagraph(l10n.t(`Only provide either the password or a private key - not both.`))
vscode.window.showInformationMessage(`Connected to ${data.host}! Would you like to configure this connection?`,`Open configuration`).then(async(selectionA)=>{
.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
+
.addHorizontalRule()
365
367
.addParagraph(vscode.l10n.t(`Only provide either the password or a private key - not both.`))
366
368
.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."))
367
369
.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."))
0 commit comments