LINUX.ORG.RU

История изменений

Исправление IIIypuk, (текущая версия) :

keybindings.json

{
  "key": "ctrl+alt+b", // Your desired hotkey
  "command": "workbench.action.terminal.sendSequence",
  "args": {
    "text": "python3 main.py\\u000D" // "\\u000D" is the unicode for the Enter key
  }
}

Исходная версия IIIypuk, :

keybindings.json

{
  "key": "ctrl+alt+b", // Your desired hotkey
  "command": "workbench.action.terminal.sendSequence",
  "args": {
    "text": "npm run build\\u000D" // "\\u000D" is the unicode for the Enter key
  }
}