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
Most editors and browsers support MRU (Most Recently Used) tab cycling — pressing Ctrl+Tab / Ctrl+Shift+Tab switches to the previously focused tab rather than the next tab in visual order. This is the expected behavior in VS Code, JetBrains IDEs, Chrome, and Arc.
Orca currently only supports sequential tab navigation (Cmd+Shift+] / [), which cycles through tabs in their positional order. When working with many open tabs, this makes it slow to jump back to a tab you were just editing — you have to cycle through every tab in between.
This is especially painful during development workflows where you frequently bounce between two or three files (e.g., a component and its test, or a model and a controller).
Proposed solution
Add MRU-based tab switching, activated by Ctrl+Tab (next recent) and Ctrl+Shift+Tab (previous recent):
Track tab focus order — maintain a stack/list of tabs ordered by last-focused time. Every time a tab gains focus, move it to the top of the MRU list.
Ctrl+Tab behavior — on first press, show a tab switcher overlay listing tabs in MRU order (most recent at top). While Ctrl is held, each Tab press moves the selection down the list. Releasing Ctrl switches to the selected tab.
Quick toggle shortcut — a single Ctrl+Tab then release should instantly switch to the previous tab (2-tab toggle), which is the most common use case.
Make it configurable — allow users to choose between MRU order and sequential order for Ctrl+Tab in settings, defaulting to MRU.
This complements the existing Cmd+Shift+]/[ sequential navigation rather than replacing it.
Alternatives or additional context
VS Code implements this as workbench.action.quickOpenPreviousRecentlyUsedEditor with a picker UI.
JetBrains IDEs use Ctrl+Tab for a "Switcher" popup with recent files and tool windows.
Problem or use case
Most editors and browsers support MRU (Most Recently Used) tab cycling — pressing
Ctrl+Tab/Ctrl+Shift+Tabswitches to the previously focused tab rather than the next tab in visual order. This is the expected behavior in VS Code, JetBrains IDEs, Chrome, and Arc.Orca currently only supports sequential tab navigation (
Cmd+Shift+]/[), which cycles through tabs in their positional order. When working with many open tabs, this makes it slow to jump back to a tab you were just editing — you have to cycle through every tab in between.This is especially painful during development workflows where you frequently bounce between two or three files (e.g., a component and its test, or a model and a controller).
Proposed solution
Add MRU-based tab switching, activated by
Ctrl+Tab(next recent) andCtrl+Shift+Tab(previous recent):Ctrlis held, eachTabpress moves the selection down the list. ReleasingCtrlswitches to the selected tab.Ctrl+Tabthen release should instantly switch to the previous tab (2-tab toggle), which is the most common use case.Ctrl+Tabin settings, defaulting to MRU.This complements the existing
Cmd+Shift+]/[sequential navigation rather than replacing it.Alternatives or additional context
workbench.action.quickOpenPreviousRecentlyUsedEditorwith a picker UI.Ctrl+Tabfor a "Switcher" popup with recent files and tool windows.Ctrl+Tab), adding the picker UI later.