Skip to content

Instantly share code, notes, and snippets.

@mdolon
Created March 31, 2017 13:39
Show Gist options
  • Save mdolon/c8b26abeb1d4e3a29e750fefe54cf9c2 to your computer and use it in GitHub Desktop.
Save mdolon/c8b26abeb1d4e3a29e750fefe54cf9c2 to your computer and use it in GitHub Desktop.
VSC shortcuts
// Place your settings in this file to overwrite the default settings
{
"javascript.validate.enable": false,
"editor.tabSize": 2,
"window.zoomLevel": 0,
"ActiveFileInStatusBar.fullpath": false,
"files.insertFinalNewline": true
}
// 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"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment