Skip to content

Commit

Permalink
Switch externalConsole to console (#499)
Browse files Browse the repository at this point in the history
* Switch externalConsole to console

* Fix terminal
  • Loading branch information
ThadHouse authored Dec 19, 2021
1 parent f9b8978 commit 357d3dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vscode-wpilib/src/cpp/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export async function startDebugging(commands: IDebugCommands): Promise<void> {
MIMode: 'gdb',
additionalSOLibSearchPath: commands.soLibPath,
cwd: commands.workspace.uri.fsPath,
externalConsole: true,
console: 'integratedTerminal',
miDebuggerPath: commands.gdbPath,
miDebuggerServerAddress: commands.target,
name: 'wpilibCppDebug',
Expand Down
2 changes: 1 addition & 1 deletion vscode-wpilib/src/cpp/simulateunix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export async function startUnixSimulation(commands: IUnixSimulateCommands): Prom
}, {
name: 'DYLD_FALLBACK_LIBRARY_PATH', value: commands.ldPath,
}],
externalConsole: false,
console: 'integratedTerminal',
name: 'WPILib C++ Simulate',
program: commands.executablePath,
request: 'launch',
Expand Down
2 changes: 1 addition & 1 deletion vscode-wpilib/src/cpp/simulatewindows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export async function startWindowsSimulation(commands: IWindowsSimulateCommands)
name: 'HALSIM_EXTENSIONS',
value: commands.extensions,
}],
externalConsole: true,
console: 'integratedTerminal',
name: 'WPILib C++ Simulate',
program: commands.launchfile,
request: 'launch',
Expand Down

0 comments on commit 357d3dd

Please sign in to comment.