34ce6b2e31
Map <leader>m in jasmine buffers to :make, which is rake -f Rakefile jasmine:ci
13 lines
202 B
VimL
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()
|