Skip to content

Instantly share code, notes, and snippets.

@DevinClark
Created January 18, 2012 16:18
Show Gist options
  • Save DevinClark/1633819 to your computer and use it in GitHub Desktop.
Save DevinClark/1633819 to your computer and use it in GitHub Desktop.
This is a build script for Sublime Text 2 that will compile and run the open java file by simply pressing cmd + B. I am very new at Java so feel free to point out problems with this script. You can just drop this file in the User Packges folder and restar
{
"cmd": ["javac", "$file_name"],
"cmd": ["java", "$file_base_name"],
"working_dir": "${project_path:${folder}}",
"selector": "source.java"
}
@ndamulelonemakh
Copy link

works well on my windows 8.1:)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment