Skip to content

Instantly share code, notes, and snippets.

@bsed
Last active May 29, 2016 01:06
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 bsed/090ab480685a7b6280e7c0132fd236ae to your computer and use it in GitHub Desktop.
Save bsed/090ab480685a7b6280e7c0132fd236ae to your computer and use it in GitHub Desktop.
VSCode+Golang tasks
{
"version": "0.1.0",
// The command is tsc. Assumes that tsc has been installed using npm install -g typescript
"command": "go",
// The command is a shell script
"isShellCommand": true,
// Show the output window only if unrecognized errors occur.
"showOutput": "silent",
// args is the HelloWorld program to compile.
"args": ["run","${file}"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment