Closed MasterGroosha closed 5 years ago
Currently my settings.json looks like:
settings.json
{ "actionButtons": { "commands": [ { "name": "Go Run", "color": "Red", "singleInstance": true, "command": "go run ${file}" } ] }, }
Unfortunately, when I run this task, it tries to execute go run ${file}, not go run <currently open file>, though ${file} template works fine in VSCode's tasks. Is it possible to add support for such templates in this extension?
go run ${file}
go run <currently open file>
${file}
Actually, yes it should be possible
The problem is that doesn't work :( Does it work for you?
Currently my
settings.json
looks like:Unfortunately, when I run this task, it tries to execute
go run ${file}
, notgo run <currently open file>
, though${file}
template works fine in VSCode's tasks. Is it possible to add support for such templates in this extension?