Created
December 16, 2018 03:14
-
-
Save brianyang/5634e5c121809226d7fc082d3a3b16e1 to your computer and use it in GitHub Desktop.
vscode keybindings
This file contains 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+left", | |
"command": "workbench.action.focusPreviousGroup", | |
"when": "textInputFocus" | |
}, | |
{ | |
"key": "ctrl+right", | |
"command": "workbench.action.focusNextGroup", | |
"when": "textInputFocus" | |
}, | |
{ | |
"key": "=", | |
"command": "editor.action.formatSelection", | |
"when": "editorHasSelection && editorTextFocus && !editorReadonly" | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment