From 3af20f737f8308e16a05902597292d31f00ffc12 Mon Sep 17 00:00:00 2001 From: Megan Rogge Date: Thu, 8 Sep 2022 16:56:01 -0700 Subject: [PATCH] add command actions always (#160454) --- .../workbench/contrib/terminal/browser/xterm/decorationAddon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/terminal/browser/xterm/decorationAddon.ts b/src/vs/workbench/contrib/terminal/browser/xterm/decorationAddon.ts index 7b174d71ee925..3545cc4f5908d 100644 --- a/src/vs/workbench/contrib/terminal/browser/xterm/decorationAddon.ts +++ b/src/vs/workbench/contrib/terminal/browser/xterm/decorationAddon.ts @@ -306,7 +306,7 @@ export class DecorationAddon extends Disposable implements ITerminalAddon { this._decorations.set(decoration.marker.id, { decoration, - disposables: markProperties?.hoverMessage ? this._createDisposables(element, command, markProperties) : [], + disposables: this._createDisposables(element, command, markProperties), exitCode: command?.exitCode, markProperties: command?.markProperties });