tooltitude / support

Tooltitude Support
https://www.tooltitude.com
Other
21 stars 0 forks source link

Nice to have option to have run code lenses for different sets of tags #26

Open stellok opened 12 months ago

stellok commented 12 months ago

launch.json

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch Package",
            "type": "go",
            "request": "launch",
            "mode": "auto",
            "program": "${fileDirname}",
            "buildFlags": "-tags=dev",
        }
    ]
}
tooltitude-support commented 12 months ago

Thanks for your feedback.

We don't have an option for this now, unfortunately. We currently just use go run shell command to run, and debug configuration like your but without --tags to debug.

Do you mind if I change the title to need a way to choose build tags for run/debug?

Also, a couple of quick questions. What kind of tags do you use? What do you use them for?