MCPcopy
hub / github.com/PowerShell/vscode-powershell / showDebugTerminal

Method showDebugTerminal

src/session.ts:1338–1352  ·  view source on GitHub ↗
(isExecute?: boolean)

Source from the content-addressed store, hash-verified

1336
1337 // Shows the temp debug terminal if it exists, otherwise the session terminal.
1338 public showDebugTerminal(isExecute?: boolean): void {
1339 if (this.debugSessionProcess) {
1340 this.debugSessionProcess.showTerminal(
1341 isExecute &&
1342 !this.sessionSettings.integratedConsole
1343 .focusConsoleOnExecute,
1344 );
1345 } else {
1346 this.languageServerProcess?.showTerminal(
1347 isExecute &&
1348 !this.sessionSettings.integratedConsole
1349 .focusConsoleOnExecute,
1350 );
1351 }
1352 }
1353
1354 // Always shows the session terminal.
1355 private showSessionTerminal(isExecute?: boolean): void {

Callers 2

launchMethod · 0.80

Calls 1

showTerminalMethod · 0.80

Tested by

no test coverage detected