Skip to content

Instantly share code, notes, and snippets.

@mdolon
Last active November 10, 2016 17:27
Show Gist options
  • Save mdolon/0a8edd47790059639c85fde1f7b2ac74 to your computer and use it in GitHub Desktop.
Save mdolon/0a8edd47790059639c85fde1f7b2ac74 to your computer and use it in GitHub Desktop.
Visual Studio Code custom keyboard mappings and settings
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "cmd+'", "command": "workbench.action.terminal.toggleTerminal" },
{ "key": "cmd+shift+'", "command": "workbench.action.terminal.new" },
{ "key": "shift+cmd+[", "command": "workbench.action.previousEditor"},
{ "key": "shift+cmd+]", "command": "workbench.action.nextEditor"},
{ "key": "cmd+l", "command": "expandLineSelection",
"when": "editorTextFocus" },
{ "key": "cmd+;", "command": "workbench.action.terminal.focus",
"when": "!terminalFocus"},
{ "key": "cmd+;", "command": "workbench.action.focusPreviousGroup",
"when": "terminalFocus"}
]
// Place your settings in this file to overwrite the default settings
{
"javascript.validate.enable": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment