From 5060f3f0ab33504e728a8673dc08679947c35ded Mon Sep 17 00:00:00 2001 From: Julian Fricker <402357+TC72@users.noreply.github.com> Date: Sun, 9 Jan 2022 18:43:06 +0000 Subject: feat: tiebreak config function (#1401) Co-authored-by: Simon Hauser --- lua/telescope/entry_manager.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua/telescope/entry_manager.lua') diff --git a/lua/telescope/entry_manager.lua b/lua/telescope/entry_manager.lua index 1e94c80..a8331e4 100644 --- a/lua/telescope/entry_manager.lua +++ b/lua/telescope/entry_manager.lua @@ -105,7 +105,7 @@ function EntryManager:_append_container(picker, new_container, should_update) end end -function EntryManager:add_entry(picker, score, entry) +function EntryManager:add_entry(picker, score, entry, prompt) score = score or 0 local max_res = self.max_results @@ -137,7 +137,7 @@ function EntryManager:add_entry(picker, score, entry) return self:_insert_container_before(picker, index, node, new_container) end - if score < 1 and container[2] == score and #entry.ordinal < #container[1].ordinal then + if score < 1 and container[2] == score and picker.tiebreak(entry, container[1], prompt) then return self:_insert_container_before(picker, index, node, new_container) end -- cgit v1.2.3