Last active
February 14, 2020 16:26
-
-
Save maccevedor/848d21b68ab9698656ba7491bdee943a to your computer and use it in GitHub Desktop.
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 override the defaults | |
[ | |
{ | |
"key": "ctrl+tab", | |
"command": "workbench.action.quickOpenPreviousRecentlyUsedEditor", | |
"when": "!inEditorsPicker" | |
}, | |
{ | |
"key": "ctrl+shift+tab", | |
"command": "workbench.action.quickOpenLeastRecentlyUsedEditor", | |
"when": "!inEditorsPicker" | |
}, | |
{ | |
"key": "ctrl+alt+oem_3", | |
"command": "workbench.action.toggleMaximizedPanel" | |
}, | |
{ | |
"key": "ctrl+shift+alt+z", | |
"command": "workbench.action.quickOpenTerm" | |
}, | |
{ | |
"key": "ctrl+]", | |
"command": "workbench.action.nextSideBarView", | |
"when": "sideBarFocus" | |
}, | |
{ | |
"key": "ctrl+[", | |
"command": "workbench.action.previousSideBarView", | |
"when": "sideBarFocus" | |
}, | |
{ | |
"key": "ctrl+=", | |
"command": "workbench.action.terminal.focus", | |
}, | |
{ | |
"key": "ctrl+=", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+shift+alt+oem_3", | |
"command": "workbench.action.terminal.focusNext" | |
}, | |
{ | |
"key": "alt+d", | |
"command": "workbench.action.terminal.kill" | |
}, | |
{ | |
"key": "alt+a", | |
"command": "editor.emmet.action.wrapWithAbbreviation" | |
}, | |
{ | |
"key": "ctrl+shift+alt+c", | |
"command": "dockerContainers.focus" | |
}, | |
{ | |
"key": "ctrl+shift+alt+l", | |
"command": "editor.action.transformToLowercase" | |
}, | |
{ | |
"key": "ctrl+shift+alt+u", | |
"command": "editor.action.transformToUppercase" | |
}, | |
{ | |
"key": "ctrl+shift+alt+f5", | |
"command": "workbench.action.debug.selectandstart" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment