From 998ad354d29bd2cf002f231cc934da688a783f45 Mon Sep 17 00:00:00 2001 From: SuperComboGamer Date: Sat, 13 Dec 2025 01:31:02 -0500 Subject: [PATCH] fix: change terminal shortcuts to avoid conflicts with shell signals MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Split right: Cmd+Shift+D / Ctrl+Shift+D (was Cmd+D which conflicts with EOF) - Split down: Cmd+Shift+E / Ctrl+Shift+E - Close: Cmd+Shift+W / Ctrl+Shift+W (was Cmd+W which conflicts with delete word) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- apps/app/src/store/app-store.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/app/src/store/app-store.ts b/apps/app/src/store/app-store.ts index 2321df53..cb749986 100644 --- a/apps/app/src/store/app-store.ts +++ b/apps/app/src/store/app-store.ts @@ -195,9 +195,10 @@ export const DEFAULT_KEYBOARD_SHORTCUTS: KeyboardShortcuts = { addProfile: "N", // Only active in profiles view // Terminal shortcuts (only active in terminal view) - splitTerminalRight: "Cmd+D", - splitTerminalDown: "Cmd+Shift+D", - closeTerminal: "Cmd+W", + // Using Shift modifier to avoid conflicts with terminal signals (Ctrl+D=EOF, Ctrl+W=delete word) + splitTerminalRight: "Cmd+Shift+D", + splitTerminalDown: "Cmd+Shift+E", + closeTerminal: "Cmd+Shift+W", }; export interface ImageAttachment {