coffeescript-support/ftplugin/jasmine.vim
Christopher H. Laco 4f20bd0225 Added Jasmine() command to run rake jasmine:ci using the nearest
Rakefile for the current ft=jasmine buffer
2011-02-02 23:04:36 -05:00

10 lines
148 B
VimL

if exists("b:did_ftplugin") || &cp
finish
endif
let b:did_ftplugin = 1
call jasmine#load_snippets()
command! Jasmine :call jasmine#run_tests()