Skip to content

Instantly share code, notes, and snippets.

@brianyang
Created December 16, 2018 03:14
Show Gist options
  • Save brianyang/5634e5c121809226d7fc082d3a3b16e1 to your computer and use it in GitHub Desktop.
Save brianyang/5634e5c121809226d7fc082d3a3b16e1 to your computer and use it in GitHub Desktop.
vscode keybindings
// 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