Skip to content

Instantly share code, notes, and snippets.

@i8degrees
Created March 14, 2013 18:35
Show Gist options
  • Select an option

  • Save i8degrees/5163975 to your computer and use it in GitHub Desktop.

Select an option

Save i8degrees/5163975 to your computer and use it in GitHub Desktop.
~/Library/Application Support/Sublime Text 2/Packages/User
{
"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