view src/testdir/bench_re_freeze.vim @ 18665:7369756d05de v8.1.2324

patch 8.1.2324: with of scrollbar in popup menu not taken into account Commit: https://github.com/vim/vim/commit/202c3f7e3e5a90135ad37100fbfd6583c84a6c99 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 21 12:12:35 2019 +0100 patch 8.1.2324: with of scrollbar in popup menu not taken into account Problem: With of scrollbar in popup menu not taken into account. Solution: Add the width of the scrollbar.
author Bram Moolenaar <Bram@vim.org>
date Thu, 21 Nov 2019 12:15:06 +0100
parents adfbffe1e642
children
line wrap: on
line source

"Test for benchmarking the RE engine

so small.vim
if !has("reltime") | finish | endif
func! Measure(file, pattern, arg)
	for re in range(3)
	    let sstart=reltime()
	    let cmd=printf("../vim -u NONE -N --cmd ':set re=%d'".
		\ " -c 'call search(\"%s\", \"\", \"\", 10000)' -c ':q!' %s", re, escape(a:pattern, '\\'), empty(a:arg) ? '' : a:arg)
	    call system(cmd. ' '. a:file)
	    $put =printf('file: %s, re: %d, time: %s', a:file, re, reltimestr(reltime(sstart)))
	endfor
endfunc