Skip to content

Instantly share code, notes, and snippets.

@polodev
Forked from rkeithhill/VSCode-keybindings.json
Created July 5, 2018 23:18
Show Gist options
  • Save polodev/bb3c83e2e8276544836218cb5a01cab0 to your computer and use it in GitHub Desktop.
Save polodev/bb3c83e2e8276544836218cb5a01cab0 to your computer and use it in GitHub Desktop.
My Visual Studio Code customized keyboard shorcuts
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "alt+n", "command": "explorer.newFile" },
{ "key": "alt+shift+s", "command": "PowerShell.InvokeRegisteredEditorCommand",
"args": { "commandName": "ConvertToSplatExpression" },
"when": "editorLangId == 'powershell'" },
{ "key": "ctrl+shift+s", "command": "workbench.action.files.saveAll" },
{ "key": "ctrl+shift+t", "command": "workbench.action.tasks.test" },
{ "key": "alt+shift+t", "command": "workbench.action.tasks.runTask" },
{ "key": "ctrl+`", "command": "workbench.action.focusActiveEditorGroup",
"when": "!editorFocus" },
{ "key": "ctrl+`", "command": "workbench.action.terminal.focus",
"when": "!terminalFocus" },
{ "key": "ctrl+shift+q", "command": "workbench.action.toggleMaximizedPanel" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment