From 36345c12fcb937c485fe6936650a37e180f57f1d Mon Sep 17 00:00:00 2001 From: Lex Christopherson Date: Mon, 16 Mar 2026 13:37:53 -0600 Subject: [PATCH] fix: add Warp terminal to unsupported Ctrl+Alt shortcut list Warp terminal (both macOS and Windows) does not emit recognized escape sequences for Ctrl+Alt key combos. This adds Warp to the unsupported terminals list so users see the /gsd status fallback hint. Closes #643 Co-Authored-By: Claude Opus 4.6 (1M context) --- src/resources/extensions/shared/terminal.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/extensions/shared/terminal.ts b/src/resources/extensions/shared/terminal.ts index f87719995..5c6f0f889 100644 --- a/src/resources/extensions/shared/terminal.ts +++ b/src/resources/extensions/shared/terminal.ts @@ -5,7 +5,7 @@ * Terminals that lack this support silently swallow the key combos. */ -const UNSUPPORTED_TERMS = ["apple_terminal"]; +const UNSUPPORTED_TERMS = ["apple_terminal", "warpterm"]; export function supportsCtrlAltShortcuts(): boolean { const term = (process.env.TERM_PROGRAM || "").toLowerCase();