Last active
December 22, 2015 01:59
-
-
Save cbednarski/6400525 to your computer and use it in GitHub Desktop.
Go build systems for Sublime Text 3
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
| { | |
| "env": {"GOPATH":"$HOME/go"}, | |
| "cmd": ["go", "build", "$file"] | |
| } |
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
| { | |
| "env": {"GOPATH":"$HOME/go"}, | |
| "cmd": ["go", "run", "$file"] | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add these files in
~/Library/Application Support/Sublime Text 3/Packages