fabiospampinato / vscode-terminals

An extension for setting-up multiple terminals at once, or just running some commands.
MIT License
121 stars 19 forks source link

[bug] command/s removed the first letter of the command #55

Open dankolesnikov opened 3 years ago

dankolesnikov commented 3 years ago

Here is a loom: https://www.loom.com/share/062fa7896f644cbf8e5075d95ea4594b

My config:

{
  "autorun": true,
  "autokill": true,
  "terminals": [
    {
      "name": "front",
      "description": "front end - brooklyn",
      "icon": "eye",
      "commands": ["front", "start"]
    }
  ]
}

When executing, command front becomes ront with f removed. Fixed by adding another f to the front command. Very weird. Can someone please take a look?