Skip to content

Instantly share code, notes, and snippets.

@NickCrew
Created February 14, 2019 17:03
Show Gist options
  • Select an option

  • Save NickCrew/218f60a5b7c8373a0ee804f44142f83f to your computer and use it in GitHub Desktop.

Select an option

Save NickCrew/218f60a5b7c8373a0ee804f44142f83f to your computer and use it in GitHub Desktop.
vscode keybindings (windows)
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "f6",
"command": "workbench.action.navigateEditorGroups"
},
{
"key": "ctrl+alt+f",
"command": "actions.find"
},
{
"key": "ctrl+f",
"command": "-actions.find"
},
{
"key": "ctrl+alt+t",
"command": "shellLauncher.launch"
},
{ "key": "ctrl+left", "command": "workbench.action.focusLeftGroup" },
{
"key": "ctrl+right",
"command": "workbench.action.focusRightGroup"
},
{
"key": "ctrl+up",
"command": "workbench.action.focusAboveGroup"
},
{
"key": "ctrl+k ctrl+up",
"command": "-workbench.action.focusAboveGroup"
},
{
"key": "ctrl+down",
"command": "workbench.action.focusBelowGroup"
},
{
"key": "ctrl+k ctrl+down",
"command": "-workbench.action.focusBelowGroup"
},
{
"key": "alt+pagedown",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+pagedown",
"command": "-workbench.action.nextEditor"
},
{
"key": "alt+pageup",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+pageup",
"command": "-workbench.action.previousEditor"
},
{
"key": "ctrl+w",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+b",
"command": "-workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+pagedown",
"command": "workbench.action.focusNextGroup"
},
{
"key": "ctrl+pageup",
"command": "workbench.action.focusPreviousGroup"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment