Skip to content

Instantly share code, notes, and snippets.

@taverasmisael
Created December 27, 2018 04:16
Show Gist options
  • Save taverasmisael/4f1938bc84b11cad51c38feee1b8e5be to your computer and use it in GitHub Desktop.
Save taverasmisael/4f1938bc84b11cad51c38feee1b8e5be to your computer and use it in GitHub Desktop.
Custom VS Code Keybindings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+cmd+alt+shift+s",
"command": "editor.saveAll"
},
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+alt+right",
"command": "cursorWordPartRight",
"when": "textInputFocus"
},
{
"key": "ctrl+shift+alt+right",
"command": "cursorWordPartRightSelect",
"when": "textInputFocus"
},
{
"key": "ctrl+alt+left",
"command": "cursorWordPartStartLeft",
"when": "textInputFocus"
},
{
"key": "ctrl+shift+alt+left",
"command": "cursorWordPartStartLeftSelect",
"when": "textInputFocus"
},
{
"key": "ctrl+alt+backspace",
"command": "deleteWordPartLeft",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+backspace",
"command": "deleteWordPartRight",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "shift+cmd+l",
"command": "workbench.action.editor.changeLanguageMode",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment