Move window logic into test capture

This commit is contained in:
Tim Pope 2014-05-05 01:27:10 -04:00
parent af14811869
commit ac88f17bb4
1 changed files with 14 additions and 14 deletions

View File

@ -1406,7 +1406,7 @@ augroup END
" }}}1 " }}}1
" Tests {{{1 " Tests {{{1
function! fireplace#capture_test_run(expr) abort function! fireplace#capture_test_run(expr, ...) abort
let expr = '(require ''clojure.test) ' let expr = '(require ''clojure.test) '
\ . '(try ' \ . '(try '
\ . '(binding [clojure.test/report (fn [m]' \ . '(binding [clojure.test/report (fn [m]'
@ -1420,7 +1420,7 @@ function! fireplace#capture_test_run(expr) abort
\ . ' (println "expected:" (pr-str (:expected m)))' \ . ' (println "expected:" (pr-str (:expected m)))'
\ . ' (println " actual:" (pr-str (:actual m)))))' \ . ' (println " actual:" (pr-str (:actual m)))))'
\ . ' ((.getRawRoot #''clojure.test/report) m)))]' \ . ' ((.getRawRoot #''clojure.test/report) m)))]'
\ . ' ' . a:expr . ')' \ . ' ' . (a:0 ? a:1 : '') . a:expr . ')'
\ . ' (catch Exception e' \ . ' (catch Exception e'
\ . ' (println (str e))' \ . ' (println (str e))'
\ . ' (println (clojure.string/join "\n" (.getStackTrace e)))))' \ . ' (println (clojure.string/join "\n" (.getStackTrace e)))))'
@ -1451,6 +1451,17 @@ function! fireplace#capture_test_run(expr) abort
call add(qflist, entry) call add(qflist, entry)
endfor endfor
call setqflist(qflist) call setqflist(qflist)
let was_qf = &buftype ==# 'quickfix'
botright cwindow
if &buftype ==# 'quickfix' && !was_qf
wincmd p
endif
for winnr in range(1, winnr('$'))
if getwinvar(winnr, '&buftype') ==# 'quickfix'
call setwinvar(winnr, 'quickfix_title', a:expr)
return
endif
endfor
endfunction endfunction
function! s:RunTests(bang, ...) abort function! s:RunTests(bang, ...) abort
@ -1467,18 +1478,7 @@ function! s:RunTests(bang, ...) abort
let pre = '(clojure.core/require '.join(empty(a:000) ? ["'".fireplace#ns()] : reqs, ' ').' :reload) ' let pre = '(clojure.core/require '.join(empty(a:000) ? ["'".fireplace#ns()] : reqs, ' ').' :reload) '
let expr = join(['(clojure.test/run-tests'] + reqs, ' ').')' let expr = join(['(clojure.test/run-tests'] + reqs, ' ').')'
endif endif
call fireplace#capture_test_run(pre.expr) call fireplace#capture_test_run(expr, pre)
let was_qf = &buftype ==# 'quickfix'
botright cwindow
if &buftype ==# 'quickfix' && !was_qf
wincmd p
endif
for winnr in range(1, winnr('$'))
if getwinvar(winnr, '&buftype') ==# 'quickfix'
call setwinvar(winnr, 'quickfix_title', expr)
return
endif
endfor
echo expr echo expr
endfunction endfunction