aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src
diff options
context:
space:
mode:
authorkjeremy <[email protected]>2019-01-30 18:46:31 +0000
committerkjeremy <[email protected]>2019-01-30 18:46:31 +0000
commit63edfaa9a08ea91917c4a7abf7fc5919ea4b7131 (patch)
treea64ed309cdab2c7f748624c3f413b7d6301cbac0 /editors/code/src
parent48d2acb297459fb06cbb49bdce2eccb4c2591714 (diff)
Clear the console when running single tasks
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/commands/runnables.ts3
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);