Skip to content

Instantly share code, notes, and snippets.

@bali182
Created August 29, 2016 08:43
Show Gist options
  • Save bali182/8b07c6c9630c81a80e2be3b01af4f86b to your computer and use it in GitHub Desktop.
Save bali182/8b07c6c9630c81a80e2be3b01af4f86b to your computer and use it in GitHub Desktop.
[
{ "key": "cmd+shift+f", "command": "editor.action.format", "when": "editorTextFocus" },
{ "key": "cmd+alt+down", "command": "editor.action.copyLinesDownAction", "when": "editorTextFocus" },
{ "key": "cmd+alt+up", "command": "editor.action.copyLinesUpAction", "when": "editorTextFocus" },
{ "key": "alt+down", "command": "editor.action.moveLinesDownAction", "when": "editorTextFocus" },
{ "key": "alt+up", "command": "editor.action.moveLinesUpAction", "when": "editorTextFocus" },
{ "key": "cmd+d", "command": "editor.action.deleteLines", "when": "editorTextFocus" },
{ "key": "alt+shift+r", "command": "editor.action.rename", "when": "editorTextFocus" },
{ "key": "ctrl+space", "command": "editor.action.triggerSuggest", "when": "editorTextFocus" },
{ "key": "f3", "command": "editor.action.goToDeclaration", "when": "editorTextFocus" },
{ "key": "cmd+1", "command": "editor.action.quickFix", "when": "editorTextFocus" },
{ "key": "cmd+shift+g", "command": "editor.action.referenceSearch.trigger", "when": "editorTextFocus" },
{ "key": "cmd+shift+t", "command": "workbench.action.showAllSymbols" },
{ "key": "cmd+l", "command": "workbench.action.gotoLine" },
{ "key": "cmd+w", "command": "workbench.action.closeActiveEditor" },
{ "key": "cmd+shift+s", "command": "workbench.action.files.saveAs" },
{ "key": "cmd+alt+s", "command": "workbench.action.files.saveAll" },
{ "key": "cmd+alt+left", "command": "workbench.action.navigateBack" },
{ "key": "cmd+alt+right", "command": "workbench.action.navigateForward" },
{ "key": "cmd+7", "command": "editor.action.commentLine"}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment