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

34次阅读

共计 333 个字符,预计需要花费 1 分钟才能阅读完成。

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”
}

正文完
 0