Skip to content

Instantly share code, notes, and snippets.

@irfanfadilah
Created December 21, 2020 20:16
Show Gist options
  • Save irfanfadilah/1b6bfb7a480d8a7002861b794eab96ee to your computer and use it in GitHub Desktop.
Save irfanfadilah/1b6bfb7a480d8a7002861b794eab96ee to your computer and use it in GitHub Desktop.
VSCode Keyboard Shortcuts
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+alt+left",
"command": "-workbench.action.moveEditorToPreviousGroup"
},
{
"key": "ctrl+alt+right",
"command": "-workbench.action.moveEditorToNextGroup"
},
{
"key": "ctrl+alt+up",
"command": "-editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+down",
"command": "-editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+right",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+alt+left",
"command": "workbench.action.terminal.focusPrevious"
},
{
"key": "ctrl+alt+up",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+alt+down",
"command": "workbench.action.terminal.toggleTerminal"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment