Last active
March 15, 2019 05:24
-
-
Save crejb/05db9705b1f98550190cc3123b7bad42 to your computer and use it in GitHub Desktop.
VS Code Keyboard Bindings
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
| [ | |
| { | |
| "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