Skip to content

Instantly share code, notes, and snippets.

@m-goos
Last active October 23, 2020 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m-goos/265e56046f77923064725912abb2a61e to your computer and use it in GitHub Desktop.
Save m-goos/265e56046f77923064725912abb2a61e to your computer and use it in GitHub Desktop.
VS Code keybindings.json settings
// inspired by https://stackoverflow.com/questions/38957302/is-there-a-quick-change-tabs-function-in-visual-studio-code
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment