mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 02:20:03 +08:00
11 lines
242 B
VimL
11 lines
242 B
VimL
function! s:perf_test(cnt) "{{{1
|
|
let start = reltime()
|
|
for i in range(1, a:cnt)
|
|
call choosewin#font#large()
|
|
call choosewin#font#small()
|
|
endfor
|
|
echo a:cnt . ": " . reltimestr(reltime(start))
|
|
endfunction
|
|
" call s:perf_test(20)
|
|
|