Created
July 19, 2017 20:09
-
-
Save evillemez/a10bcdde13e3390a6c62e987a219e0d8 to your computer and use it in GitHub Desktop.
Custom VSCODE keybindings for Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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