From 182092c5fdd5aafb22f80b4bc55c337cc8ed1bcd Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Sat, 6 Jun 2026 11:48:39 -0500 Subject: [PATCH] feat(desktop): default swap-panes to cmd+backslash --- apps/desktop/src/lib/keybinds/actions.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/desktop/src/lib/keybinds/actions.ts b/apps/desktop/src/lib/keybinds/actions.ts index c1df542cd19..527b3e89fcf 100644 --- a/apps/desktop/src/lib/keybinds/actions.ts +++ b/apps/desktop/src/lib/keybinds/actions.ts @@ -79,7 +79,8 @@ export const KEYBIND_ACTIONS: readonly KeybindActionMeta[] = [ { id: 'view.toggleRightSidebar', category: 'view', defaults: ['mod+j'] }, { id: 'view.showFiles', category: 'view', defaults: [] }, { id: 'view.showTerminal', category: 'view', defaults: [] }, - { id: 'view.flipPanes', category: 'view', defaults: [] }, + // ⌘\ — the backslash reads like a mirror line flipping the layout. + { id: 'view.flipPanes', category: 'view', defaults: ['mod+\\'] }, { id: 'appearance.toggleMode', category: 'view', defaults: ['shift+x'] }, { id: 'keybinds.openPanel', category: 'view', defaults: ['mod+/'] } ]