Skip to content

Instantly share code, notes, and snippets.

@killedbymemory
Last active February 14, 2020 01:32
Show Gist options
  • Save killedbymemory/045322196105102a2ab71fd86373b633 to your computer and use it in GitHub Desktop.
Save killedbymemory/045322196105102a2ab71fd86373b633 to your computer and use it in GitHub Desktop.
VSCode
[
{
"key": "ctrl+shift+x",
"command": "workbench.action.toggleMaximizedPanel"
},
{
"key": "ctrl+e",
"command": "-workbench.action.quickOpen",
},
{
"description": "Toggle between terminal and editor focus",
"source": "https://stackoverflow.com/questions/42796887/switch-focus-between-editor-and-integrated-terminal-in-visual-studio-code"
},
{
"key": "ctrl+`",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+`",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "ctrl+alt+`",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"description": "Resize terminal",
"source": "https://github.com/microsoft/vscode/issues/46100#issuecomment-374257826"
},
{
"key": "ctrl+shift+up",
"command": "workbench.action.terminal.resizePaneUp",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+right",
"command": "workbench.action.terminal.resizePaneRight",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+down",
"command": "workbench.action.terminal.resizePaneDown",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+left",
"command": "workbench.action.terminal.resizePaneLeft",
"when": "terminalFocus"
},
{
"key": "ctrl+k",
"command": "workbench.action.toggleActivityBarVisibility"
},
{
"key": "ctrl+shift+k",
"command": "workbench.action.toggleStatusbarVisibility"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment