diff options
author | kjeremy <[email protected]> | 2019-01-30 18:46:31 +0000 |
---|---|---|
committer | kjeremy <[email protected]> | 2019-01-30 18:46:31 +0000 |
commit | 63edfaa9a08ea91917c4a7abf7fc5919ea4b7131 (patch) | |
tree | a64ed309cdab2c7f748624c3f413b7d6301cbac0 /editors | |
parent | 48d2acb297459fb06cbb49bdce2eccb4c2591714 (diff) |
Clear the console when running single tasks
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/src/commands/runnables.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/code/src/commands/runnables.ts b/editors/code/src/commands/runnables.ts index d9ae56420..c0f2ada76 100644 --- a/editors/code/src/commands/runnables.ts +++ b/editors/code/src/commands/runnables.ts | |||
@@ -118,7 +118,8 @@ export async function handleSingle(runnable: Runnable) { | |||
118 | task.group = vscode.TaskGroup.Build; | 118 | task.group = vscode.TaskGroup.Build; |
119 | task.presentationOptions = { | 119 | task.presentationOptions = { |
120 | reveal: vscode.TaskRevealKind.Always, | 120 | reveal: vscode.TaskRevealKind.Always, |
121 | panel: vscode.TaskPanelKind.Dedicated | 121 | panel: vscode.TaskPanelKind.Dedicated, |
122 | clear: true | ||
122 | }; | 123 | }; |
123 | 124 | ||
124 | return vscode.tasks.executeTask(task); | 125 | return vscode.tasks.executeTask(task); |