By copy/paste and with some changes which somehow seemed to make sense to me
I've come up with this tasks.json.
{
// See
[https://go.microsoft.com/fwlink/?LinkId=733558](https://go.microsoft.com/fwlink/?LinkId=733558)
// for the documentation about the tasks.json format "version": "2.0.0",
"tasks": [
{
"label": "build", "type": "shell", "command": "nim", "args": ["c", "-r",
"scratch.nim"], "group": "build",
"presentation": {
// Reveal the output only if unrecognized errors occur. "reveal": "silent"
}
}
]
}
I can't believe that that the file's name has to be hard coded here.
I don't understand why I need to write this file at all since I installed the
nim plugin.
Best regards Paul