Created
November 21, 2016 17:35
-
-
Save mradbourne/d4cd4f373cdaeff84bb2797f40087af4 to your computer and use it in GitHub Desktop.
VS Code keyboard shortcuts
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": "shift+cmd+d", | |
| "command": "editor.action.copyLinesDownAction" | |
| }, | |
| { | |
| "key": "cmd+l", | |
| "command": "expandLineSelection" | |
| }, | |
| { | |
| "key": "cmd+ctrl+up", | |
| "command": "editor.action.moveLinesUpAction" | |
| }, | |
| { | |
| "key": "cmd+ctrl+down", | |
| "command": "editor.action.moveLinesDownAction" | |
| }, | |
| { | |
| "key": "cmd+d", | |
| "command": "editor.action.addSelectionToNextFindMatch", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "shift+cmd+,", | |
| "command": "vscode.previewSwagger", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "alt+cmd+/", | |
| "command": "editor.action.blockComment", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+cmd+g", | |
| "command": "editor.action.selectHighlights", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "alt+cmd+.", | |
| "command": "auto-close-tag.closeTag", | |
| "when": "editorTextFocus" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment