Skip to content

Instantly share code, notes, and snippets.

@dirtystylus
Last active February 20, 2017 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dirtystylus/5cb907738b5a0dd928345a719039f892 to your computer and use it in GitHub Desktop.
Save dirtystylus/5cb907738b5a0dd928345a719039f892 to your computer and use it in GitHub Desktop.
VS Code Key Bindings
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "shift+alt+down", "command": "cursorColumnSelectDown", "when": "editorTextFocus" },
{ "key": "shift+alt+up", "command": "cursorColumnSelectUp", "when": "editorTextFocus" },
{ "key": "cmd+l", "command": "workbench.action.gotoLine" },
{ "key": "shift+ctrl+d", "command": "editor.action.copyLinesDownAction", "when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+cmd+down", "command": "editor.action.moveLinesDownAction", "when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+cmd+up", "command": "editor.action.moveLinesUpAction", "when": "editorTextFocus && !editorReadonly" },
{ "key": "shift+cmd+[", "command": "workbench.action.previousEditor" },
{ "key": "shift+cmd+]", "command": "workbench.action.nextEditor" },
{ "key": "cmd+t", "command": "workbench.action.quickOpen" },
{ "key": "shift+cmd+t", "command": "workbench.action.gotoSymbol" },
{ "key": "shift+ctrl+k", "command": "editor.action.deleteLines", "when": "editorTextFocus && !editorReadonly" },
{ "key": "alt+cmd+w", "command": "editor.action.toggleWordWrap", "when": "editorTextFocus" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment