Created
October 4, 2016 05:49
-
-
Save anttti/81577fb4600b0d1231b4a48d35bbf0d2 to your computer and use it in GitHub Desktop.
My VS Code Custom Keybindings
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": "cmd+shift+d", "command": "editor.action.copyLinesDownAction", | |
| "when": "editorTextFocus" }, | |
| { "key": "cmd+alt+w", "command": "editor.action.toggleWordWrap", | |
| "when": "editorTextFocus" }, | |
| { "key": "cmd+shift-c", "command": "editor.action.commentLine", | |
| "when": "editorTextFocus" }, | |
| { "key": "shift+ctrl+down", "command": "cursorColumnSelectDown", | |
| "when": "editorTextFocus" }, | |
| { "key": "shift+ctrl+up", "command": "cursorColumnSelectUp", | |
| "when": "editorTextFocus" }, | |
| { "key": "cmd+t", "command": "workbench.action.quickOpen" }, | |
| { "key": "cmd+t", "command": "workbench.action.quickOpenNavigateNext", | |
| "when": "inQuickOpen" }, | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment