[sublime系列文章] sublime text 3构建系统

sublime系列文章sublime text 3如何设置宏sublime text 3插件配置说明sublime text 3构建系统

sublime text3 原生操作
构建系统(Build Systems)

添加php构建系统

Tools->Bulid System->New Build System
//添加如下json{
// 用php.exe执行当前文件($file)
// 由于这里是php.exe,要么填写完成路径,要么将php.exe添加到环境变量
“cmd”: [“php.exe”, “$file”],
// 返回信息的格式
“file_regex”: “^.+ in (.+) on line ([0-9]+)”,
// 自动匹配构建系统的时候,匹配的文件类型
“selector”: “source.php”
}

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理