Skip to content

Instantly share code, notes, and snippets.

@simonwongwong
Created May 17, 2021 19:29
Show Gist options
  • Save simonwongwong/e9b7f1d09e0b26697947e8277d82cd74 to your computer and use it in GitHub Desktop.
Save simonwongwong/e9b7f1d09e0b26697947e8277d82cd74 to your computer and use it in GitHub Desktop.
change ctrl+tab behaviour in VSCODE to expected next/previous behaviour (like on chrome)
// Place your key bindings in this file to override the defaultsauto[]
[
{
"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