Skip to content

Instantly share code, notes, and snippets.

@mortenbra
Created March 14, 2018 19:44
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 mortenbra/5caebb61f600018841509d0443717c41 to your computer and use it in GitHub Desktop.
Save mortenbra/5caebb61f600018841509d0443717c41 to your computer and use it in GitHub Desktop.
Visual Studio Code custom keybindings
// Place your key bindings in this file to overwrite the defaults
[
{"key": "ctrl+shift+d", "command": "editor.action.copyLinesDownAction" }
,
{"key": "ctrl+r", "command": "workbench.action.gotoSymbol" }
,
{"key": "ctrl+shift+up", "command": "editor.action.moveLinesUpAction" }
,
{"key": "ctrl+shift+down", "command": "editor.action.moveLinesDownAction" }
,
{ "key": "ctrl+shift+u","command": "extension.changeCase.upper", "when": "editorTextFocus" }
,
{ "key": "ctrl+shift+l", "command": "extension.changeCase.lower", "when": "editorTextFocus" }
,
{ "key": "f5", "command": "workbench.action.tasks.build" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment