Skip to content

Commit 1726e70

Browse files
authored
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>
1 parent 69e96be commit 1726e70

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Please also check the documentation of [Language Support for Java by Red Hat](ht
102102
- never - Never apply the changes.
103103
- `java.debug.settings.enableRunDebugCodeLens`: enable the code lens provider for the run and debug buttons over main entry points, defaults to `true`.
104104
- `java.debug.settings.forceBuildBeforeLaunch`: force building the workspace before launching java program, defaults to `true`.
105-
- `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.
105+
- `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.
106106
- `internalConsole` - VS Code debug console (input stream not supported).
107107
- `integratedTerminal` - VS Code integrated terminal.
108108
- `externalTerminal` - External terminal that can be configured in user settings.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
"%java.debugger.launch.externalTerminal.description%"
171171
],
172172
"description": "%java.debugger.launch.console.description%",
173-
"default": "internalConsole"
173+
"default": "integratedTerminal"
174174
},
175175
"shortenCommandLine": {
176176
"type": "string",
@@ -471,7 +471,7 @@
471471
"%java.debugger.launch.externalTerminal.description%"
472472
],
473473
"description": "%java.debugger.configuration.console%",
474-
"default": "internalConsole"
474+
"default": "integratedTerminal"
475475
}
476476
}
477477
}

0 commit comments

Comments
 (0)