Created
September 24, 2024 08:24
-
-
Save dbafromthecold/a3040250732a2541cad1d4975d3bbe9e to your computer and use it in GitHub Desktop.
vscode_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
| // Place your key bindings in this file to overwrite the defaults | |
| [ | |
| { | |
| "key": "ctrl+/", | |
| "command": "workbench.action.terminal.focus", | |
| "when": "!terminalFocus" | |
| }, | |
| { | |
| "key": "ctrl+/", | |
| "command": "workbench.action.focusActiveEditorGroup", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "ctrl+;", | |
| "command": "extension.multiCommand.execute", | |
| "args": { | |
| "sequence": [ | |
| "workbench.action.terminal.runSelectedText", // run line | |
| "workbench.action.focusActiveEditorGroup" | |
| ] | |
| } | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment