From 1726e70d3c70fc3d768e17a758ceb53eeed16b06 Mon Sep 17 00:00:00 2001 From: Yan Zhang Date: Fri, 19 Jul 2019 10:41:59 +0800 Subject: [PATCH] change default console to integrated terminal (#611) * change default console to integrated terminal Signed-off-by: Yan Zhang * update readme Signed-off-by: Yan Zhang * update default value for launch.json schema Signed-off-by: Yan Zhang --- README.md | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0f6ca4a..71cf3b7 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ Please also check the documentation of [Language Support for Java by Red Hat](ht - never - Never apply the changes. - `java.debug.settings.enableRunDebugCodeLens`: enable the code lens provider for the run and debug buttons over main entry points, defaults to `true`. - `java.debug.settings.forceBuildBeforeLaunch`: force building the workspace before launching java program, defaults to `true`. -- `java.debug.settings.console`: The specified console to launch Java program, defaults to `internalConsole`. If you want to customize the console for a specific debug session, please modify the 'console' config in launch.json. +- `java.debug.settings.console`: The specified console to launch Java program, defaults to `integratedTerminal`. If you want to customize the console for a specific debug session, please modify the 'console' config in launch.json. - `internalConsole` - VS Code debug console (input stream not supported). - `integratedTerminal` - VS Code integrated terminal. - `externalTerminal` - External terminal that can be configured in user settings. diff --git a/package.json b/package.json index 1a7f957..4464b5e 100644 --- a/package.json +++ b/package.json @@ -170,7 +170,7 @@ "%java.debugger.launch.externalTerminal.description%" ], "description": "%java.debugger.launch.console.description%", - "default": "internalConsole" + "default": "integratedTerminal" }, "shortenCommandLine": { "type": "string", @@ -471,7 +471,7 @@ "%java.debugger.launch.externalTerminal.description%" ], "description": "%java.debugger.configuration.console%", - "default": "internalConsole" + "default": "integratedTerminal" } } }