Skip to content

Commit da1fd80

Browse files
Add warning about IntelliSense to PSIC terminate dialog (#3976)
This came up in a user group that many people weren't aware of, so I think enhancing this message is appropriate. Co-authored-by: Andy Schwartzmeyer <[email protected]>
1 parent 6059b58 commit da1fd80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/session.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ export class SessionManager implements Middleware {
508508

509509
private promptForRestart() {
510510
vscode.window.showErrorMessage(
511-
"The PowerShell session has terminated due to an error, would you like to restart it?",
511+
"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.)",
512512
"Yes", "No")
513513
.then((answer) => { if (answer === "Yes") { this.restartSession(); }});
514514
}

0 commit comments

Comments
 (0)