Vim Quickrunでcoffeescriptコンパイル

vimのquickrunでcoffeescriptをコンパイルする設定

複数ファイルをまとめてコンパイルしたいので、依存するファイルは、ファイルの 先頭らへんで擬似的に’import’と記述しておく。

1
2
3
4
5
# import '_lib/_lib.coffee'
# import '_lib/FileSystem.coffee'
# import '_lib/ShellSystem.coffee'

console.log "hello"

みたいに記述された ‘test.coffee’というソース上で’<leader>r’ 実行すると、

1
coffee -j test.js -cb _lib/_lib.coffee _lib/FileSystem.coffee _lib/ShellSystem.coffee test.coffee

が実行される。

Comments