vim/compiler/clojure.vim @ b5ede088f7f2
Add spedd dating.
author |
Steve Losh <steve@stevelosh.com> |
date |
Mon, 29 Aug 2011 14:33:10 -0400 |
parents |
496c5c177a4c |
children |
f625da5ccd84 |
"============================================================================
"Compiler: Clojure (cake test)
"Maintainer: Steve Losh <steve@stevelosh.com>
"License: MIT/X11
"============================================================================
if exists("current_compiler")
finish
endif
let current_compiler = "clojure"
let s:cpo_save = &cpo
set cpo-=C"endif
setlocal makeprg=\(echo\ DIR:\ `pwd`/test/`ls\ test`/test\ &&\ cake\ test\)
setlocal errorformat=
\%-DDIR:\ %f,
\%E%tAIL\ in\ %m\ (%f:%l),
\%C%m,
\%Z%^%$,
\%-G%>Ran\ %.%#\ tests\ containing\ %.%#\ assertions.,
\%-G%.%#,
let &cpo = s:cpo_save
unlet s:cpo_save