Skip to content

Instantly share code, notes, and snippets.

@anttti
Created October 4, 2016 05:49
Show Gist options
  • Select an option

  • Save anttti/81577fb4600b0d1231b4a48d35bbf0d2 to your computer and use it in GitHub Desktop.

Select an option

Save anttti/81577fb4600b0d1231b4a48d35bbf0d2 to your computer and use it in GitHub Desktop.
My VS Code Custom Keybindings
[
{ "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