Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. ### Running Groovy from Sublime Text Editor
  2.  
  3. - Open the editor and go to menu `Tools->Build System`
  4. - This will open a new file named `untitled.sublime-build`
  5. - Add the path to your Groovy installation directory as show below.
  6. <pre>
  7. {
  8. "cmd": ["C:/Users/kulkan02/.gvm/groovy/2.3.0/bin/groovy.bat", "$file"]
  9. }
  10. </pre>
  11. - Now `save` the file as `groovy.sublime-build`
  12. - Open your groovy script and in the menu select `Tools->Build System->Groovy`
  13. - To compile and execute, `Tools->Build’ or F7 or Ctrl+B`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement