Skip to content

Instantly share code, notes, and snippets.

@dbafromthecold
Created September 24, 2024 08:24
Show Gist options
  • Select an option

  • Save dbafromthecold/a3040250732a2541cad1d4975d3bbe9e to your computer and use it in GitHub Desktop.

Select an option

Save dbafromthecold/a3040250732a2541cad1d4975d3bbe9e to your computer and use it in GitHub Desktop.
vscode_keybindings
// 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