Last active
May 23, 2018 14:02
-
-
Save babie/af14d3a5943e28b568f6f1eeb2c4e055 to your computer and use it in GitHub Desktop.
vscode user keybindings
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": "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