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
Copy file name to clipboardExpand all lines: src/extension.ts
+32-5Lines changed: 32 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -342,7 +342,7 @@ async function serverManager(): Promise<any> {
342
342
}
343
343
awaitvscode.window
344
344
.showInformationMessage(
345
-
"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.",
345
+
`The [InterSystems Server Manager extension](https://marketplace.visualstudio.com/items?itemName=${extId}) 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.`,
346
346
"Install",
347
347
"Later",
348
348
"Never"
@@ -370,9 +370,35 @@ async function serverManager(): Promise<any> {
// Such command do not exists, suppose we are under Theia, it's not possible to install this extension this way
382
+
return;
383
+
}
384
+
awaitvscode.window
385
+
.showInformationMessage(
386
+
`Install the [InterSystems Language Server extension](https://marketplace.visualstudio.com/items?itemName=${extId}) for best handling of ObjectScript code.`,
0 commit comments