Skip to content

Commit

Permalink
Use dedicated terminal panel per unique PIO Task
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Jul 20, 2017
1 parent aec54ca commit 13c3056
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Release Notes

## 0.5.2 (2017-??-??)

* Use dedicated terminal panel per unique PIO Task

## 0.5.1 (2017-07-18)

* Add new Tasks
Expand Down
3 changes: 3 additions & 0 deletions src/tasks.js
Expand Up @@ -250,6 +250,9 @@ class TaskCreator {
new vscode.ProcessExecution(IS_WINDOWS ? 'platformio.exe' : 'platformio', this._args, { env: process.env }),
'$platformio'
);
task.presentationOptions = {
panel: vscode.TaskPanelKind.Dedicated
};
if (this.isBuild()) {
task.group = vscode.TaskGroup.Build;
} else if (this.isClean()) {
Expand Down

0 comments on commit 13c3056

Please sign in to comment.