Skip to content

Commit

Permalink
Added support for apache#7740, apache#7815 and apache#7993
Browse files Browse the repository at this point in the history
  • Loading branch information
Achal1607 committed Feb 24, 2025
1 parent 23fea05 commit 29c5563
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,11 @@
"type": "boolean",
"default": false,
"description": "%jdk.configuration.disableProjectSearchLimit.description%"
},
"jdk.completion.warning.time": {
"type": "integer",
"default": 10000,
"description": "%jdk.debugger.configuration.completion.warning.time.description%"
}
}
},
Expand Down
1 change: 1 addition & 0 deletions vscode/package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"jdk.debugger.configuration.attach.processId.description": "Process Id of the debuggee",
"jdk.debugger.configuration.attach.listen.description": "Listen for the debuggee to attach",
"jdk.debugger.configuration.attach.timeout.description": "Timeout while waiting to attach",
"jdk.debugger.configuration.completion.warning.time.description": "When code completion takes longer than this specified time (in milliseconds), there will be a warning produced (-1 to disable)",
"jdk.initialConfigurations.launchJavaApp.name": "Launch Java App",
"jdk.configurationSnippets.name": "Launch Java App",
"jdk.configurationSnippets.label": "Java+: Launch Java Application",
Expand Down
2 changes: 1 addition & 1 deletion vscode/src/commands/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const runDebug = async (noDebug: boolean, testRun: boolean, uri: any, methodName
}
debugConfig['testRun'] = testRun;
const workspaceFolder = vscode.workspace.getWorkspaceFolder(docUri);
if (project) {
if (project || testRun) {
debugConfig['projectFile'] = docUri.toString();
debugConfig['project'] = true;
} else {
Expand Down

0 comments on commit 29c5563

Please sign in to comment.