Last active
March 12, 2020 20:50
-
-
Save DaelonSuzuka/1fc220a7f368e3069a62903e2ed4d880 to your computer and use it in GitHub Desktop.
VS Code Keybindings
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
{ | |
"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