Skip to content

Commit

Permalink
Use "outputCapture": "std" for Node launches
Browse files Browse the repository at this point in the history
Fixes #1365

Signed-off-by: Andrew Ferrazzutti <[email protected]>
  • Loading branch information
AndrewFerr committed Oct 19, 2023
1 parent 272c6ad commit cf88121
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ public void launch(ILaunchConfiguration configuration, String mode, ILaunch laun
param.put(LaunchConstants.PROGRAM, program);
param.put("type", type);
param.put("request", "launch");
param.put("outputCapture", "std");
String argsString = configuration.getAttribute(ARGUMENTS, "").trim(); //$NON-NLS-1$
if (!argsString.isEmpty()) {
Object[] args = Arrays.asList(argsString.split(" ")).stream() //$NON-NLS-1$
Expand Down

0 comments on commit cf88121

Please sign in to comment.