LoginSignup
1
1

More than 5 years have passed since last update.

SublimeText2でCoffeeScriptを実行する時のビルド設定(Windows)

Posted at

SublimeText2でCoffeeScriptを実行する時のビルド設定

Windowsだと文字コードとかでよくハマるので、動作確認済みのビルド設定を下記にメモしておきます。

環境

  • Windows7
  • SublimeText2
{
    "cmd": ["coffee.cmd", "-c", "$file"]
,   "selector": "source.coffee"
,   "encoding": "cp932"
,   "working_dir": "$project_path"
,   "variants":
    [
        {
            "name": "Run",
            "cmd": ["coffee.cmd", "$file"]
        }
    ]
}
1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1