Skip to content

Commit 765f658

Browse files
committed
Align startup banner with pwsh experience
Truly I just didn't like the ASCII arrows.
1 parent 161bdc4 commit 765f658

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/session.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,13 @@ export class SessionManager implements Middleware {
220220
if (this.sessionSettings.integratedConsole.suppressStartupBanner) {
221221
this.editorServicesArgs += "-StartupBanner '' ";
222222
} else {
223-
const startupBanner = `=====> ${this.HostName} Extension v${this.HostVersion} <=====
223+
const startupBanner = `${this.HostName} Extension v${this.HostVersion}
224+
Copyright (c) Microsoft Corporation.
225+
226+
https://aka.ms/vscode-powershell
227+
Type 'help' to get help.
224228
`;
225-
this.editorServicesArgs += `-StartupBanner '${startupBanner}' `;
229+
this.editorServicesArgs += `-StartupBanner "${startupBanner}" `;
226230
}
227231

228232
if (this.sessionSettings.developer.editorServicesWaitForDebugger) {

0 commit comments

Comments
 (0)