Skip to content

Commit 5fe441e

Browse files
amoswzwclaude
andcommitted
fix: remove Ctrl+W ClosePane binding to avoid shell conflict
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent a714f72 commit 5fe441e

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

CLAUDE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,6 @@ input:
393393
keybindings:
394394
- { key: N, mods: Control, action: NewTerminal }
395395
- { key: H, mods: Control, action: SplitHorizontal }
396-
- { key: W, mods: Control, action: ClosePane }
397396
- { key: B, mods: Control, action: ToggleSidebar }
398397
- { key: Up, mods: Control, action: FocusPrevRow }
399398
- { key: Down, mods: Control, action: FocusNextRow }

src-tauri/src/config.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,6 @@ fn default_keybindings() -> Vec<KeyBinding> {
414414
vec![
415415
KeyBinding { key: "N".to_string(), mods: Some("Control".to_string()), action: "NewTerminal".to_string() },
416416
KeyBinding { key: "H".to_string(), mods: Some("Control".to_string()), action: "SplitHorizontal".to_string() },
417-
KeyBinding { key: "W".to_string(), mods: Some("Control".to_string()), action: "ClosePane".to_string() },
418417
KeyBinding { key: "B".to_string(), mods: Some("Control".to_string()), action: "ToggleSidebar".to_string() },
419418
KeyBinding { key: "\\".to_string(), mods: Some("Control".to_string()), action: "ToggleInputMode".to_string() },
420419
KeyBinding { key: ",".to_string(), mods: Some(settings_mod.to_string()), action: "OpenSettings".to_string() },

0 commit comments

Comments
 (0)