Skip to content

Instantly share code, notes, and snippets.

@babie
Last active May 23, 2018 14:02
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 babie/af14d3a5943e28b568f6f1eeb2c4e055 to your computer and use it in GitHub Desktop.
Save babie/af14d3a5943e28b568f6f1eeb2c4e055 to your computer and use it in GitHub Desktop.
vscode user keybindings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "cmd+1",
"command": "workbench.action.toggleActivityBarVisibility"
},
{
"key": "cmd+2",
"command": "workbench.action.toggleSidebarVisibility"
},
/*{
"key": "cmd+3",
"command": "workbench.action.toggleZenMode"
},*/
{
"key": "cmd+4",
"command": "editor.action.toggleMinimap"
},
{
"key": "ctrl+w h",
"command": "workbench.action.navigateLeft"
},
{
"key": "ctrl+w l",
"command": "workbench.action.navigateRight"
},
{
"key": "ctrl+w k",
"command": "workbench.action.navigateUp"
},
{
"key": "ctrl+w j",
"command": "workbench.action.navigateDown"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment