Quickly change to next tab and previous tab with keyboard shortcuts.
By default, VS Code cycle through tabs through ctrl
+tab
.
-
Open command palette:
cmd
+shift
+p
-
Enter:
Preferences: Open Keyboard Shortcuts (JSON)
-
Add this code to the json file:
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
}
This should be the default setting for VS Code instead.