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/fast_split.lua | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 scratch/fast_split.lua (limited to 'scratch/fast_split.lua') diff --git a/scratch/fast_split.lua b/scratch/fast_split.lua deleted file mode 100644 index 0c5ea88..0000000 --- a/scratch/fast_split.lua +++ /dev/null @@ -1,28 +0,0 @@ -local test_line = "/home/tj/hello/world.lua" - -local function fast_split(line, split) - -- local split_line = vim.split(line, split) - local areas = {} - - local processed = 1 - local line_length = #line + 1 - - local part, start - repeat - start = string.find(line, split, processed, true) or line_length - part = string.sub(line, processed, start - 1) - - if start - processed > 0 then - table.insert(areas, { - word = part, - offset = processed - }) - end - - processed = start + 1 - until start == line_length - - return areas -end - -print(vim.inspect(fast_split(test_line, '/'))) -- cgit v1.2.3