We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d91ace commit c3f94d5Copy full SHA for c3f94d5
1 file changed
src/configurationProvider.ts
@@ -471,7 +471,7 @@ export class JavaDebugConfigurationProvider implements vscode.DebugConfiguration
471
const paths: string[] = [];
472
let replaced: boolean = false;
473
for (const p of pathArray) {
474
- for (const splitPath of p.split(':')) {
+ for (const splitPath of p.split(process.platform === 'win32' ? ';' : ':')) {
475
if (pathVariables.includes(splitPath)) {
476
if (!replaced) {
477
paths.push(...resolvedPaths);
0 commit comments