restore-terminals-vscode
                                
                                 restore-terminals-vscode copied to clipboard
                                
                                    restore-terminals-vscode copied to clipboard
                            
                            
                            
                        Terminals order is not respected
I  have the following configuration file .vscode/restore-terminals.json:
{
  "artificialDelayMilliseconds": 300,
  "keepExistingTerminalsOpen": false,
  "runOnStartup": true,
  "terminals": [
    {
      "splitTerminals": [
        {
          "name": "run-api",
          "commands": [
            "fnm use",
            "make boot",
            "make run-api"
          ]
        }
      ]
    },
    {
      "splitTerminals": [
        {
          "name": "server",
          "commands": [
            "fnm use",
            "make run-server"
          ]
        },
        {
          "name": "worker",
          "commands": [
            "fnm use",
            "make run-worker"
          ]
        }
      ]
    },
    {
      "splitTerminals": [
          {
            "name": "api",
            "commands": [
              "fnm use",
              "git status"
            ]
          }
        ]
      }
  ]
}
I would expect my terminals to be:
run-api
server | worker
api
What I get instead is:
run-api | worker
server
api
+1