Advertisement
freestyler7

JavaC.sublime-build

Jul 1st, 2013
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "cmd": ["javac", "-cp", ":bin/*", "-d", "bin", "${file_name}"],
  3.     "file_regex": "^(...*?):([0-9]*):?([0-9]*)",
  4.     "working_dir": "${file_path}",
  5.     "selector": "source.java",
  6.  
  7.     "variants":
  8.     [
  9.         {
  10.             "name": "Run",
  11.             "working_dir": "${file_path}/bin",
  12.             "cmd": ["gnome-terminal", "-e", "bash -c 'java -cp :* ${file_base_name}; echo java -cp :* ${file_base_name} >> ~/.bash_history; exec bash'"]
  13.         }
  14.     ]
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement