Skip to content

Commit

Permalink
Stop launching an external console window for VSCode
Browse files Browse the repository at this point in the history
This change makes it such that the debugged process now runs in a tab
instead of an external window. This is needed because VSCode-in-WSL
cannot launch an external console window, which breaks the experience
completely.
  • Loading branch information
lhchavez committed Sep 24, 2020
1 parent 8a88fb8 commit 1bcad01
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
"name": "libinteractive console runner",
"type": "cppdbg",
"request": "launch",
"externalConsole": true,
"stopAtEntry": false,
"program": "${workspaceFolder}/@runPath",
"args": ["--debug"],
Expand All @@ -49,7 +48,6 @@
"name": "libinteractive example runner",
"type": "cppdbg",
"request": "launch",
"externalConsole": true,
"stopAtEntry": false,
"program": "${workspaceFolder}/@runPath",
"args": ["--debug", "${workspaceFolder}/examples/sample.in"],
Expand Down

0 comments on commit 1bcad01

Please sign in to comment.