I am struggling to execute gnuplot scripts from Sublime2.
Gnuplot is installed and I can execute it from Terminal (OSX). My build configuration in Sublime 2 looks like this:
{
"cmd": ["gnuplot"]
}
when Building it get the following result:
[Errno 2] No such file or directory
[cmd: [u'gnuplot']]
[dir: /Users/macuser/Documents/Gnuplot]
[path: /usr/bin:/bin:/usr/sbin:/sbin]
[Finished]
How to I set up the build instructions in sublime so the script will be send to gnuplot with the current path as a working directory?
Thanks