I\'ve tried to use sublime text 2 to write lua\\corona program, but I\'ve faced with a problem.
When i add a build tool with such a text:
{ \"cmd
Try this : http://www.sublimetext.com/forum/viewtopic.php?f=3&t=8512
In Packages/Default/exec.py at line 45
Packages/Default/exec.py
Replace :
proc_env[k] = os.path.expandvars(v).encode(sys.getfilesystemencoding())
With :
os.path.expandvars(v.decode(sys.getfilesystemencoding())).encode(sys.getfilesystemencoding())