We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pwsh
1 parent 161bdc4 commit 765f658Copy full SHA for 765f658
src/session.ts
@@ -220,9 +220,13 @@ export class SessionManager implements Middleware {
220
if (this.sessionSettings.integratedConsole.suppressStartupBanner) {
221
this.editorServicesArgs += "-StartupBanner '' ";
222
} else {
223
- const startupBanner = `=====> ${this.HostName} Extension v${this.HostVersion} <=====
+ 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.
228
`;
- this.editorServicesArgs += `-StartupBanner '${startupBanner}' `;
229
+ this.editorServicesArgs += `-StartupBanner "${startupBanner}" `;
230
}
231
232
if (this.sessionSettings.developer.editorServicesWaitForDebugger) {
0 commit comments