Skip to content

Commit f398de4

Browse files
committed
servermanager install dialog - add links, clarify buttons
1 parent 39bbac0 commit f398de4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/extension.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -338,10 +338,10 @@ async function serverManager(): Promise<any> {
338338
}
339339
await vscode.window
340340
.showInformationMessage(
341-
"The InterSystems® Server Manager extension is recommended to help you define connections and store passwords securely in your keychain.",
341+
"The [InterSystems® Server Manager extension](https://marketplace.visualstudio.com/items?itemName=intersystems-community.servermanager) is recommended to help you [define connections and store passwords securely](https://intersystems-community.github.io/vscode-objectscript/configuration/#configuring-a-server) in your keychain.",
342342
"Install",
343-
"Skip",
344-
"Ignore"
343+
"Later",
344+
"Never"
345345
)
346346
.then(async (action) => {
347347
switch (action) {
@@ -350,10 +350,10 @@ async function serverManager(): Promise<any> {
350350
await vscode.commands.executeCommand("workbench.extensions.installExtension", extId);
351351
extension = vscode.extensions.getExtension(extId);
352352
break;
353-
case "Ignore":
353+
case "Never":
354354
config().update("ignoreInstallServerManager", true, vscode.ConfigurationTarget.Global);
355355
break;
356-
case "Skip":
356+
case "Later":
357357
default:
358358
}
359359
});

0 commit comments

Comments
 (0)