change default console to integrated terminal (#611)

* change default console to integrated terminal

Signed-off-by: Yan Zhang <yanzh@microsoft.com>

* update readme

Signed-off-by: Yan Zhang <yanzh@microsoft.com>

* update default value for launch.json schema

Signed-off-by: Yan Zhang <yanzh@microsoft.com>
This commit is contained in:
Yan Zhang 2019-07-19 10:41:59 +08:00 committed by GitHub
parent 69e96be6bf
commit 1726e70d3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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.

View File

@ -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"
}
}
}