Changes between Initial Version and Version 1 of notes/VSCode


Ignore:
Timestamp:
2021-10-18T04:46:27Z (3 years ago)
Author:
root
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • notes/VSCode

    v1 v1  
     1= VSCode` notes
     2== golang debug with env and tags
     3{{{
     4#!json
     5  "configurations": [
     6    {
     7      "name": "Launch file",
     8      "type": "go",
     9      "request": "launch",
     10      "mode": "debug",
     11      "program": "${file}",
     12      "buildFlags": "-tags=tag1",
     13      "env": {
     14        "VARIABLE_NAME": "variable value",
     15      },
     16      "showLog": true,
     17    }
     18  ]
     19}}}