coffeescript-support/ftplugin/jasmine.vim
Christopher H. Laco 58708fb349 Added jasmine.txt doc
Renamed run_tests() to redgreen() and added make()
Renamed Jasmine command to JasmineRedGreen and JasmineMake
2011-02-14 23:12:26 -05:00

14 lines
259 B
VimL

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