Skip to content

Instantly share code, notes, and snippets.

@crejb
Last active March 15, 2019 05:24
Show Gist options
  • Select an option

  • Save crejb/05db9705b1f98550190cc3123b7bad42 to your computer and use it in GitHub Desktop.

Select an option

Save crejb/05db9705b1f98550190cc3123b7bad42 to your computer and use it in GitHub Desktop.
VS Code Keyboard Bindings
[
{
"key": "ctrl+alt+left",
"command": "subwordNavigation.cursorSubwordLeft",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+right",
"command": "subwordNavigation.cursorSubwordRight",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+shift+left",
"command": "subwordNavigation.cursorSubwordLeftSelect",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+shift+right",
"command": "subwordNavigation.cursorSubwordRightSelect",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+d",
"command": "editor.action.deleteLines",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+t",
"command": "workbench.action.tasks.test"
},
{
"key": "ctrl+e c",
"command": "editor.action.commentLine",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+e",
"command": "workbench.action.tasks.terminate",
"when": "editorTextFocus"
},
{
"key": "ctrl+e u",
"command": "editor.action.removeCommentLine",
"when": "editorTextFocus"
},
{
"key": "ctrl+k s",
"command": "workbench.action.files.saveAs"
},
{
"key": "ctrl+shift+s",
"command": "workbench.action.files.saveAll"
},
{
"key": "ctrl+k c",
"command": "extension.changeCase.camel"
},
{
"key": "ctrl+k k",
"command": "extension.changeCase.kebab"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment