我尝试比较同一个vim函数的两个版本。我如何计时和比较?
我正在寻找的是一种简单的方法,可以将第一个版本的功能与第二个版本进行对比,并提供某种精确的时间回声。
谢谢!
答案 0 :(得分:4)
以下是使用:help reltime()
和:help reltimestr()
:
function! Foo()
" do your thing
for i in range(1,8)
let @a = i
endfor
endfunction
" save current time
let start_time = reltime()
" call your function
call Foo()
" echo elapsed time expressed in seconds
echo "elapsed time:" reltimestr(reltime(start_time))
它应该输出如下内容:
elapsed time: 0.000165