Last active
November 17, 2015 11:59
-
-
Save ilyabrin/d6a67190f726f3de09f1 to your computer and use it in GitHub Desktop.
Sublime + Golang Build System
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "cmd": ["/usr/bin/go","build","$file"], | |
| "selector" : "source.go", | |
| "variants": [ | |
| { "cmd": ["/usr/bin/go", "run", "$file"], | |
| "name": "Run" | |
| } | |
| ] | |
| } | |
| ## Use | |
| Build: Ctrl/Cmd + B | |
| Run: Ctrl/Cmd + Shift + B |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment