Hey, thanks for the report.
It looks like a hotkey context conflict. Please check:
-
With the terminal focused, run from the command palette:
Terminal: Focus NextTerminal: Focus Previous
Do they work as expected?
-
Add explicit bindings with the terminalFocus context and see if that fixes it:
- Open Keyboard Shortcuts (
Cmd+Shift+P→ Keyboard Shortcuts or Settings → Keyboard Shortcuts) - Open
keybindings.jsonand add:
- Open Keyboard Shortcuts (
{
"key": "cmd+shift+]",
"command": "workbench.action.terminal.focusNext",
"when": "terminalFocus"
},
{
"key": "cmd+shift+[",
"command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus"
}
If that doesn’t help, please send:
- Your
keybindings.json - Confirmation that VS Code on the same machine behaves correctly
- A short video or exact steps with the exact keys (your steps list
Cmd+], please confirm you meanCmd+Shift+]) - A screenshot of conflicts from Keyboard Shortcuts if you see duplicates
Once we confirm, I’ll pass this to the team.