Sublime text 2 build tools - nothing happens

后端 未结 1 1470
栀梦
栀梦 2021-01-15 11:31

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         


        
相关标签:
1条回答
  • 2021-01-15 12:19

    Try this : http://www.sublimetext.com/forum/viewtopic.php?f=3&t=8512

    In Packages/Default/exec.py at line 45

    Replace :

    proc_env[k] = os.path.expandvars(v).encode(sys.getfilesystemencoding())
    

    With :

    os.path.expandvars(v.decode(sys.getfilesystemencoding())).encode(sys.getfilesystemencoding())
    
    0 讨论(0)
提交回复
热议问题