mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-31 06:42:03 +00:00
fix: change terminal shortcuts to avoid conflicts with shell signals
- 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 <noreply@anthropic.com>
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user