Skip to content

Instantly share code, notes, and snippets.

@evillemez
Created July 19, 2017 20:09
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 evillemez/a10bcdde13e3390a6c62e987a219e0d8 to your computer and use it in GitHub Desktop.
Save evillemez/a10bcdde13e3390a6c62e987a219e0d8 to your computer and use it in GitHub Desktop.
Custom VSCODE keybindings for Ubuntu
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+m",
"command": "editor.action.jumpToBracket",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+\\",
"command": "-editor.action.jumpToBracket",
"when": "editorTextFocus"
},
{
"command": "workbench.action.nextEditor",
"key": "ctrl+tab"
},
{
"command": "workbench.action.previousEditor",
"key": "ctrl+shift+tab"
},
{
"command": "workbench.action.terminal.focusNext",
"key": "ctrl+tab",
"when": "terminalFocus"
},
{
"command": "workbench.action.terminal.focusPrevious",
"key": "ctrl+shift+tab",
"when": "terminalFocus"
},
{
"key": "alt+meta+t",
"command": "workbench.action.terminal.focus",
"when": "!terminalFocus"
}
{
"key": "alt+meta+t",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment