Answers for "vscode shortcut close terminal"

11

visual studio code terminal window shortcut back

// Toggle between terminal and editor focus
{ "key": "ctrl+`", "command": "workbench.action.terminal.focus"},
{ "key": "ctrl+`", "command": "workbench.action.focusActiveEditorGroup", "when": "terminalFocus"}
Posted by: Guest on December-19-2019
1

vscode add shortcut to run in terminal

{
    "key": "ctrl+alt+u",
    "command": "workbench.action.terminal.sendSequence",
    "args": {
      "text": "node -vu000D"
    }
}
Posted by: Guest on December-09-2021

Browse Popular Code Answers by Language