coffeescript-support/compiler/jasmine.vim
Christopher H. Laco 34ce6b2e31 Added start of jasmine compiler for :make
Map <leader>m in jasmine buffers to :make, which is rake -f Rakefile
jasmine:ci
2011-02-03 23:12:10 -05:00

13 lines
241 B
VimL

if exists("current_compiler")
finish
endif
let current_compiler = "jasmine"
if exists(":CompilerSet") != 2
command -nargs=* CompilerSet setlocal <args>
endif
CompilerSet makeprg=rake "$*"
CompilerSet errorformat=\ %#%f(%l\\\,%c):\ %m