[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"

    }

你可能感兴趣的:(sublime-text-3)