feat(desktop): default swap-panes to cmd+backslash

This commit is contained in:
Brooklyn Nicholson 2026-06-06 11:48:39 -05:00
parent 021ea2a21b
commit 182092c5fd

View file

@ -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+/'] }
]