Created
February 14, 2019 17:03
-
-
Save NickCrew/218f60a5b7c8373a0ee804f44142f83f to your computer and use it in GitHub Desktop.
vscode keybindings (windows)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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