mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 22:01:42 +03:00
ca9125f8e9
Let's _untie_ the [VSCode Enso extension](https://marketplace.visualstudio.com/items?itemName=Enso.enso4vscode) from `sbt` commands. Let's **open any Enso file in the editor** and then use _F5_ or _Ctrl-F5_ to execute it. Let the user choose which `bin/enso` script to use for execution completely skipping the need for `sbt`.
25 lines
446 B
JSON
25 lines
446 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "java+",
|
|
"request": "launch",
|
|
"name": "Launch Enso File"
|
|
},
|
|
{
|
|
"name": "Listen to 5005",
|
|
"type": "java+",
|
|
"request": "attach",
|
|
"listen": "true",
|
|
"hostName": "localhost",
|
|
"port": "5005"
|
|
},
|
|
{
|
|
"name": "Debug Adapter Protocol",
|
|
"type": "node",
|
|
"debugServer": 4711,
|
|
"request": "attach"
|
|
}
|
|
]
|
|
}
|