Skip to content

Instantly share code, notes, and snippets.

@a2ikm
Last active March 28, 2020 17:46
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 a2ikm/f9abb2798212641dc3e5fb736a05918e to your computer and use it in GitHub Desktop.
Save a2ikm/f9abb2798212641dc3e5fb736a05918e to your computer and use it in GitHub Desktop.
My keybindings.json for VSCode
// Place your key bindings in this file to override the defaults
[
// cycle tabs in the current group with ctrl+tab and ctrl+shift+tab
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditorInGroup"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditorInGroup"
},
// cycle groups with ctrl+[ and ctrl+]
{
"key": "ctrl+[",
"command": "workbench.action.focusPreviousGroup"
},
{
"key": "ctrl+]",
"command": "workbench.action.focusNextGroup"
}
]
@a2ikm
Copy link
Author

a2ikm commented Mar 28, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment