From c270a676156ae06a095f292eb7bc8ec2d8e574b8 Mon Sep 17 00:00:00 2001 From: Alex Ross Date: Tue, 8 Oct 2019 11:35:33 +0200 Subject: [PATCH] Terminal should scroll to bottom on reused task terminals fixes #72503 --- src/vs/workbench/contrib/tasks/browser/terminalTaskSystem.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/contrib/tasks/browser/terminalTaskSystem.ts b/src/vs/workbench/contrib/tasks/browser/terminalTaskSystem.ts index 2f29f0d229b..4f33f892c3f 100644 --- a/src/vs/workbench/contrib/tasks/browser/terminalTaskSystem.ts +++ b/src/vs/workbench/contrib/tasks/browser/terminalTaskSystem.ts @@ -987,6 +987,7 @@ export class TerminalTaskSystem implements ITaskSystem { throw new Error('Task shell launch configuration should not be undefined here.'); } + terminalToReuse.terminal.scrollToBottom(); terminalToReuse.terminal.reuseTerminal(launchConfigs); if (task.command.presentation && task.command.presentation.clear) { -- GitLab