coffeescript的路径变量在windows上的sublime中构建

时间:2013-02-25 00:06:56

标签: windows coffeescript sublimetext2

所以我有这个构建文件

{
    "cmd": ["coffee", "-c", "$file"],
    "selector": "source.coffee",
    "path": "C:\\Users\\Miles\\node_modules\\coffee-script\\bin",
    "working_dir": "$project_path"
}

它一直在返回错误

[错误2]系统找不到指定的文件

我已经找了几天而且我能找到的只是基于unix的路径。

我知道这很可能是微不足道的,但它已经有一段时间了。

1 个答案:

答案 0 :(得分:3)

经过大量的修修补补,这很好。

{
    "cmd": ["coffee.cmd", "-c", "$file"],
    "selector": "source.coffee",
    "file_regex": "^(...*?):([0-9]*):?([0-9]*)",
    "path": "$HOME/bin:/usr/local/bin:$PATH",
    "working_dir": "$project_path"
}