Skip to content

Commit 045a164

Browse files
Apply suggestions from code review
Co-authored-by: John Murray <[email protected]>
1 parent ef91a30 commit 045a164

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/extension.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ async function serverManager(): Promise<any> {
342342
}
343343
await vscode.window
344344
.showInformationMessage(
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.`,
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.`,
346346
"Install",
347347
"Later",
348348
"Never"
@@ -383,7 +383,7 @@ async function languageServer(): Promise<vscode.Extension<any>> {
383383
}
384384
await vscode.window
385385
.showInformationMessage(
386-
`The [InterSystems® Language-Server extension](https://marketplace.visualstudio.com/items?itemName=${extId}) is recommended.`,
386+
`Install the [InterSystems Language-Server extension](https://marketplace.visualstudio.com/items?itemName=${extId}) for best handling of ObjectScript code.`,
387387
"Install",
388388
"Later"
389389
)
@@ -563,7 +563,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<any> {
563563
const languageServerExt = await languageServer();
564564
const noLSsubscriptions: { dispose(): any }[] = [];
565565
if (!languageServerExt) {
566-
outputChannel.appendLine(`The language-server extension was not found.\n`);
566+
outputChannel.appendLine(`The intersystems.language-server extension is not installed or has been disabled.\n`);
567567
outputChannel.show(true);
568568

569569
if (vscode.window.activeTextEditor) {

0 commit comments

Comments
 (0)