Skip to content

Instantly share code, notes, and snippets.

@Dviejopomata
Created May 11, 2018 13:33
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 Dviejopomata/a58f5e1291054f6717be05aee251dc5f to your computer and use it in GitHub Desktop.
Save Dviejopomata/a58f5e1291054f6717be05aee251dc5f to your computer and use it in GitHub Desktop.
Keyboard vscode
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+shift+t",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+shift+l",
"command": "workbench.action.editor.changeLanguageMode"
},
{
"key": "ctrl+k m",
"command": "-workbench.action.editor.changeLanguageMode"
},
{
"key": "alt+down",
"command": "-workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
},
{
"key": "alt+left",
"command": "-workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+alt+[Backslash]",
"command": "workbench.action.terminal.kill"
},
{
"key": "ctrl+shift+right",
"command": "workbench.action.terminal.focusNext",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+left",
"command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus"
},
{
"key": "shift+alt+f",
"command": "editor.action.formatDocument",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+i",
"command": "-editor.action.formatDocument",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+t",
"command": "typescript.reloadProjects"
},
{
"key": "alt+left",
"command": "workbench.action.navigateBack"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment