vim/compiler/clojure.vim @ 0d6656688318
Fix fish tab complete with the new --wraps thing
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Thu, 17 Sep 2015 16:49:47 +0000 |
| parents | f625da5ccd84 |
| children | (none) |
"============================================================================ "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 let &l:makeprg=fnameescape(globpath(&runtimepath, 'compiler/cake-test-wrapper.py')) setlocal errorformat=%f:%l:%m let &cpo = s:cpo_save unlet s:cpo_save