Skip to content

Instantly share code, notes, and snippets.

@harkamals
Last active January 21, 2019 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harkamals/a525320ef930310ca3289c66b07b440f to your computer and use it in GitHub Desktop.
Save harkamals/a525320ef930310ca3289c66b07b440f to your computer and use it in GitHub Desktop.
VSCode Golang setup
{
"version": "2.0.0",
"tasks": [
{
"label": "go-run",
"type": "shell",
"command": "go run ${file}",
"options": {
"cwd": "${workspaceRoot}"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$go"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment