欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Sublime text 3配置Lua环境

程序员文章站 2022-07-05 19:08:27
...

一、下载Lua for windows
下载(Lua for windows)之后,直接一直下一步。如果中间报相关vcredist_x86.exe报错,请下载vcredist_x86.exe(vcredist)安装。重新再安装Lua for windows,OK。
Sublime text 3配置Lua环境

二、配置Sublime text build system
通过Tools -> Build System下的New Build System,输入以下配置。ctl+s保存。然后选择刚才添加的build 环境。ctl+b编译Lua文件,控制台输出编译成功,大功告成。

    {
        "cmd": ["lua", "$file"], 
        "file_regex":"^(?:lua:)?[\t](...*?):([0-9]*):?([0-9]*)", 
        "selector":"source.lua" 
    }

注意:通过安装Lua for windows安装Lua环境,会自动添加环境变量,不需要再添加了。

详细请参考:github