Skip to content

Instantly share code, notes, and snippets.

@RajaJaganathan
Created November 25, 2016 12:50
Show Gist options
  • Save RajaJaganathan/14a6784c4e4a36caa39bb9b27887a706 to your computer and use it in GitHub Desktop.
Save RajaJaganathan/14a6784c4e4a36caa39bb9b27887a706 to your computer and use it in GitHub Desktop.
sublime-keymap for vscode
// Place your key bindings in this file to overwrite the defaults
[{
"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": "shift+cmd+h",
"command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly"
}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment