coffeescript-support/ftplugin/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
202 B
VimL

if exists("b:did_ftplugin") || &cp
finish
endif
let b:did_ftplugin = 1
compiler jasmine
map <buffer> <leader>m :Jasmine<CR>
call jasmine#load_snippets()
command! Jasmine :call jasmine#run_tests()