Created
March 14, 2013 18:35
-
-
Save i8degrees/5163975 to your computer and use it in GitHub Desktop.
~/Library/Application Support/Sublime Text 2/Packages/User
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": ["make"], | |
| "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", | |
| "working_dir": "${project_path:${folder:${file_path}}}", | |
| "selector": "source.makefile", | |
| "path": "/usr/bin:/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin", | |
| "variants": | |
| [ | |
| { | |
| "name": "Clean", | |
| "cmd": ["make", "clean"] | |
| }, | |
| { | |
| "name": "Test", | |
| "cmd": ["make", "test"] | |
| }, | |
| { | |
| "name": "Run", | |
| "cmd": ["${file_path}/${file_base_name}"] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment