Skip to content

Instantly share code, notes, and snippets.

@DaelonSuzuka
Last active March 12, 2020 20:50
Show Gist options
  • Save DaelonSuzuka/1fc220a7f368e3069a62903e2ed4d880 to your computer and use it in GitHub Desktop.
Save DaelonSuzuka/1fc220a7f368e3069a62903e2ed4d880 to your computer and use it in GitHub Desktop.
VS Code Keybindings
{
"key": "alt+`",
"command": "workbench.action.terminal.focus",
"when": "editorTextFocus"
},
{
"key": "alt+`",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "ctrl+`",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+q",
"command": "editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "enter",
"command": "git.stageSelectedRanges",
"when": "isInDiffEditor"
},
{
"key": "backspace",
"command": "git.revertSelectedRanges",
"when": "isInDiffEditor"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment