VS Code to automatically start with the Julia REPL running

Is it possible to configure VS Code to automatically start with the Julia REPL running in its integrated terminal?

1 Like

Install Commands Executor - Visual Studio Marketplace and set

 "vscode-commands-executor.startupRules": [
    {
      "commands": [
        {
          "id": "language-julia.startREPL"
        },
      ],
      "message": "Starting Julia REPL...",
      // "conditions": [
      //   "hasFile: **/Project.toml"
      // ]
    }
  ]
2 Likes