From a97af306c4e9c9a6fa7c886c0ffe3079822c5203 Mon Sep 17 00:00:00 2001 From: TJ DeVries Date: Fri, 20 Aug 2021 11:11:24 -0400 Subject: feat(performance): Major performance improvements using async v2 from @oberblastmeister (#987) * start: Working w/ async jobs * short circuit to using bad finder if you pass writer. --- scratch/how_long_does_time_take.lua | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 scratch/how_long_does_time_take.lua (limited to 'scratch/how_long_does_time_take.lua') diff --git a/scratch/how_long_does_time_take.lua b/scratch/how_long_does_time_take.lua deleted file mode 100644 index a77e47b..0000000 --- a/scratch/how_long_does_time_take.lua +++ /dev/null @@ -1,8 +0,0 @@ -local start = vim.loop.hrtime() - -local counts = 1e6 -for _ = 1, counts do - local _ = vim.loop.hrtime() -end - -print(counts, ":", (vim.loop.hrtime() - start) / 1e9) -- cgit v1.2.3