diff --git a/src/session.ts b/src/session.ts index 57bb385715..f96bb734f7 100644 --- a/src/session.ts +++ b/src/session.ts @@ -508,7 +508,7 @@ export class SessionManager implements Middleware { private promptForRestart() { vscode.window.showErrorMessage( - "The PowerShell session has terminated due to an error, would you like to restart it?", + "The PowerShell session has terminated due to an error, would you like to restart it? (IntelliSense will not work unless the PSIC is active and unblocked.)", "Yes", "No") .then((answer) => { if (answer === "Yes") { this.restartSession(); }}); }