From 332c5fa4288eddcb44f999fa5a7661e5d87f6d74 Mon Sep 17 00:00:00 2001 From: Jean Pierre Date: Tue, 14 Sep 2021 02:07:10 +0000 Subject: [PATCH] Explicitly set icon to task terminals. This forces to show the terminal name in the terminal tab list otherwise icon is set depending on this._processManager.processState which could happens after the list finished rendering --- extensions/gitpod-shared/src/features.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/gitpod-shared/src/features.ts b/extensions/gitpod-shared/src/features.ts index 70fbda7c2127c..4e59937f2600e 100644 --- a/extensions/gitpod-shared/src/features.ts +++ b/extensions/gitpod-shared/src/features.ts @@ -723,7 +723,8 @@ export async function registerTasks(context: GitpodExtensionContext, createTermi const terminal = createTerminal( { name: taskTerminal.getTitle(), - pty + pty, + iconPath: new vscode.ThemeIcon('tools') }, parentTerminal );