Skip to content

Commit

Permalink
#708: Added method for vscode (#709)
Browse files Browse the repository at this point in the history
  • Loading branch information
leonrohne27 authored Oct 31, 2024
1 parent cdbc8e3 commit d146098
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit d146098

Please sign in to comment.