You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an user setting to control whether to build the workspace before debugging (#485)
* Add an user setting to control whether to build the workspace before debuging
Signed-off-by: Jinbo Wang <jinbwan@microsoft.com>
* Add Chinese translation for the new setting
Signed-off-by: Jinbo Wang <jinbwan@microsoft.com>
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,7 @@ Please also check the documentation of [Language Support for Java by Red Hat](ht
91
91
-`java.debug.settings.maxStringLength`: the maximum length of string displayed in "Variables" or "Debug Console" viewlet, the string longer than this length will be trimmed, defaults to `0` which means no trim is performed.
92
92
-`java.debug.settings.enableHotCodeReplace`: enable hot code replace for Java code. Make sure the auto build is not disabled for [VSCode Java](https://github.com/redhat-developer/vscode-java). See the [wiki page](https://github.com/Microsoft/vscode-java-debug/wiki/Hot-Code-Replace) for more information about usages and limitations.
93
93
-`java.debug.settings.enableRunDebugCodeLens`: enable the code lens provider for the run and debug buttons over main entry points, defaults to `true`.
94
+
-`java.debug.settings.forceBuildBeforeLaunch`: force building the workspace before launching java program, defaults to `true`.
94
95
95
96
## Troubleshooting
96
97
Reference the [troubleshooting guide](https://github.com/Microsoft/vscode-java-debug/blob/master/Troubleshooting.md) for common errors.
Copy file name to clipboardExpand all lines: package.nls.json
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -36,5 +36,6 @@
36
36
"java.debugger.configuration.showQualifiedNames.description": "Show fully qualified class names in \"Variables\" viewlet.",
37
37
"java.debugger.configuration.maxStringLength.description": "The maximum length of strings displayed in \"Variables\" or \"Debug Console\" viewlet, strings longer than this length will be trimmed, if 0 no trim is performed.",
38
38
"java.debugger.configuration.enableHotCodeReplace.description": "Enable hot code replace for Java code.",
39
-
"java.debugger.configuration.enableRunDebugCodeLens.description": "Enable the run and debug code lens providers over main methods."
39
+
"java.debugger.configuration.enableRunDebugCodeLens.description": "Enable the run and debug code lens providers over main methods.",
40
+
"java.debugger.configuration.forceBuildBeforeLaunch": "Force building the workspace before launching java program."
0 commit comments