Ctrl + Tab not switching between tabs

Where does the bug appear (feature/product)?

Cursor IDE

Describe the Bug

Previously, by pressing Ctrl + Tab it would cycle between editor tabs. Now, it only goes to the next tab, and once it reaches the end, it stops there, not cycling the same way as before.

Steps to Reproduce

Open 2 files and press Ctrl + Tab. It doesn’t cycle between those.

Operating System

MacOS

Version Information

Version: 3.8.22 (Universal)
VS Code Extension API: 1.105.1
Commit: 46fb7aafe279d7c72346febe68c2e004b7d1de60
Date: 2026-06-22T21:41:16.291Z
Layout: editor
Build Type: Stable
Release Track: Default
Electron: 40.10.3
Chromium: 144.0.7559.236
Node.js: 24.15.0
V8: 14.4.258.32-electron.0
xterm.js: 6.1.0-beta.256
OS: Darwin arm64 24.6.0

Does this stop you from using Cursor

No - Cursor works, but with this issue

Hey, thanks for the report. This is a known regression. After Chat and Composer moved into a separate editor group, if the Agents or Chat sidebar is closed, tab switching stops wrapping and gets stuck on the last tab. We’re tracking the issue, but I can’t share an exact fix timeline yet.

For now, here are two workarounds:

  1. Keep the Agents or Chat sidebar open. In this case, wrapping works like before.
  2. Rebind Ctrl+Tab to the in-group commands in keybindings.json. These always cycle within the active tab group and wrap correctly:
{ "key": "ctrl+tab", "command": "workbench.action.nextEditorInGroup" }
{ "key": "ctrl+shift+tab", "command": "workbench.action.previousEditorInGroup" }

Let me know if this helps. Once there’s an update on the fix, I’ll reply in the thread.