Answers for "vs code shortcuts based on terminal"

15

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
2

vscode add shortcut to run in terminal

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

Code answers related to "vs code shortcuts based on terminal"

Browse Popular Code Answers by Language