Created
November 16, 2017 13:21
-
-
Save mknxdev/585e97bc1b953cefc22606e9bf442ecf to your computer and use it in GitHub Desktop.
VS Code - Key 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+[Period]", | |
"command": "editor.action.commentLine", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+shift+[Period]", | |
"command": "-editor.action.commentLine", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+shift+[Period]", | |
"command": "editor.action.blockComment", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+shift+a", | |
"command": "-editor.action.blockComment", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+alt+down", | |
"command": "editor.action.moveLinesDownAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+alt+up", | |
"command": "editor.action.moveLinesUpAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "alt+left", | |
"command": "subwordNavigation.cursorSubwordLeft", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+right", | |
"command": "subwordNavigation.cursorSubwordRight", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+shift+left", | |
"command": "subwordNavigation.cursorSubwordLeftSelect", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+shift+right", | |
"command": "subwordNavigation.cursorSubwordRightSelect", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+backspace", | |
"command": "subwordNavigation.deleteSubwordLeft", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+delete", | |
"command": "subwordNavigation.deleteSubwordRight", | |
"when": "editorTextFocus" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment