Skip to content

Instantly share code, notes, and snippets.

@soderlind
Last active December 18, 2024 18:08
Show Gist options
  • Save soderlind/4303d27e0ccb90a0106e09a046c7f309 to your computer and use it in GitHub Desktop.
Save soderlind/4303d27e0ccb90a0106e09a046c7f309 to your computer and use it in GitHub Desktop.
Favorite keybindings in Visual Studio Code: Select next file or next workspace

Favorite keybindings in Visual Studio Code

First, disable multible tabs: Set Workbench > Editor: Show Tabs to single

Included in VS Code:

  • Control+Tab: Next File
  • Shift+Control+Tab: Previous File

Custom, add the code in keybindings.json to VS Code (Shift+Command+P, select Preferences: Open Keybord Shortcuts (JSON))

  • Option+Tab: Next Workspace (file picker)
  • Shift+Option+Tab: Previous Workspace (file picker)
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "alt+tab",
"command": "workbench.action.quickOpenRecent",
"when": "!inRecentFilesPicker"
},
{
"key": "alt+tab",
"command": "workbench.action.quickOpenNavigateNextInRecentFilesPicker",
"when": "inQuickOpen && inRecentFilesPicker"
},
{
"key": "shift+alt+tab",
"command": "workbench.action.quickOpenNavigatePreviousInRecentFilesPicker",
"when": "inQuickOpen && inRecentFilesPicker"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment