diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index c74127864..37d4d7bbe 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -6,6 +6,7 @@ This file documents all notable changes to https://github.com/devonfw/IDEasy[IDE Release with new features and bugfixes: +* https://github.com/devonfw/IDEasy/issues/708[#708]: Open vscode in workspace path * https://github.com/devonfw/IDEasy/issues/608[#608]: Enhanced error messages. Now logs missing command output and error messages The full list of changes for this release can be found in https://github.com/devonfw/IDEasy/milestone/15?closed=1[milestone 2024.11.001]. diff --git a/cli/src/main/java/com/devonfw/tools/ide/tool/vscode/Vscode.java b/cli/src/main/java/com/devonfw/tools/ide/tool/vscode/Vscode.java index e6a7cfc9b..574d37f61 100644 --- a/cli/src/main/java/com/devonfw/tools/ide/tool/vscode/Vscode.java +++ b/cli/src/main/java/com/devonfw/tools/ide/tool/vscode/Vscode.java @@ -131,6 +131,7 @@ protected void configureToolArgs(ProcessContext pc, ProcessMode processMode, Pro pc.addArg("--user-data-dir=" + vsCodeConf); Path vsCodeExtensionFolder = this.context.getIdeHome().resolve("plugins/vscode"); pc.addArg("--extensions-dir=" + vsCodeExtensionFolder); + pc.addArg(this.context.getWorkspacePath()); super.configureToolArgs(pc, processMode, errorHandling, args); }