Skip to content

Instantly share code, notes, and snippets.

@oiotoxt
Last active September 22, 2021 12:36
Show Gist options
  • Select an option

  • Save oiotoxt/63de13fcc820a9cd398050d11707e541 to your computer and use it in GitHub Desktop.

Select an option

Save oiotoxt/63de13fcc820a9cd398050d11707e541 to your computer and use it in GitHub Desktop.
vscode key bindings
[
{
"key": "ctrl+2",
"command": "editor.action.previousSelectionMatchFindAction",
"when": "editorFocus"
},
{
"key": "ctrl+3",
"command": "editor.action.nextSelectionMatchFindAction",
"when": "editorFocus"
},
{
"key": "ctrl+shift+alt+v",
"command": "markdown.showPreview",
"when": "!notebookEditorFocused && editorLangId == 'markdown'"
},
{
"key": "ctrl+shift+j",
"command": "workbench.action.toggleMaximizedPanel"
},
{
"key": "shift+cmd+j",
"command": "workbench.action.toggleMaximizedPanel"
},
{
"key": "ctrl+alt+1",
"command": "workbench.action.focusFirstEditorGroup"
},
{
"key": "ctrl+alt+2",
"command": "workbench.action.focusSecondEditorGroup"
},
{
"key": "ctrl+alt+3",
"command": "workbench.action.focusThirdEditorGroup"
},
{
"key": "ctrl+alt+4",
"command": "workbench.action.focusFourthEditorGroup"
},
{
"key": "ctrl+alt+5",
"command": "workbench.action.focusFifthEditorGroup"
},
{
"key": "ctrl+alt+6",
"command": "workbench.action.focusSixthEditorGroup"
},
{
"key": "ctrl+alt+7",
"command": "workbench.action.focusSeventhEditorGroup"
},
{
"key": "ctrl+alt+8",
"command": "workbench.action.focusEighthEditorGroup"
},
{
"key": "ctrl+alt+9",
"command": "workbench.action.lastEditorInGroup"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment