You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tabs: ⌘⇧T reopens closed tabs, dblclick bar = new tab
- Per-pane in-session closed-tab stack on `TabManager`. Restores path, view mode, sort, pin, cursor, history, original index. Capped via the new `fileExplorer.tabs.closedTabHistorySize` setting (default 10, range 1–50). Lowering the cap trims both panes' stacks immediately.
- `closeOtherTabs` pushes right-to-left so pressing ⌘⇧T N times rebuilds the exact pre-close arrangement.
- Native menu item "Reopen closed tab" (⌘⇧T) under Tab, disabled when the focused pane's stack is empty (mirrors the `pin_tab` enable-state pattern via a new `set_reopen_closed_tab_enabled` Tauri command).
- Command palette + shortcut registry entries for `tab.reopen`. New `reopen` action on the MCP `tab` tool (per-pane, no `tab_id`).
- Double-click on empty tab bar (padding, trailing flex space, top spacer) creates a new tab. Skipped on `.tab`, `.close-btn`, `.new-tab-btn`.
- Tests: 12 new in `tab-state-manager.test.ts` (push order on close-others, original-index restore, cap behavior, pinned-survives-closeOthers, trim), 5 in `TabBar.a11y.test.ts`, 1 MCP schema assertion, plus a `setReopenClosedTabEnabled` mock for `DualPaneExplorer.test.ts`.
- Docs updated in `tabs/CLAUDE.md` and `menu/CLAUDE.md`.
0 commit comments