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:
parent
69e96be6bf
commit
1726e70d3c
|
@ -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.
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue