mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-04 09:13:08 +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
|
addProfile: "N", // Only active in profiles view
|
||||||
|
|
||||||
// Terminal shortcuts (only active in terminal view)
|
// Terminal shortcuts (only active in terminal view)
|
||||||
splitTerminalRight: "Cmd+D",
|
// Using Shift modifier to avoid conflicts with terminal signals (Ctrl+D=EOF, Ctrl+W=delete word)
|
||||||
splitTerminalDown: "Cmd+Shift+D",
|
splitTerminalRight: "Cmd+Shift+D",
|
||||||
closeTerminal: "Cmd+W",
|
splitTerminalDown: "Cmd+Shift+E",
|
||||||
|
closeTerminal: "Cmd+Shift+W",
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface ImageAttachment {
|
export interface ImageAttachment {
|
||||||
|
|||||||
Reference in New Issue
Block a user