From c392f1b78eaaf870ca584bd698e78076ed301b26 Mon Sep 17 00:00:00 2001 From: James Trew <66286082+jamestrew@users.noreply.github.com> Date: Sat, 15 Jun 2024 14:40:26 -0400 Subject: [PATCH] fix(builtin.buffers): missing return in attach_mappings (#3172) --- lua/telescope/builtin/__internal.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/telescope/builtin/__internal.lua b/lua/telescope/builtin/__internal.lua index cd78386..105b88e 100644 --- a/lua/telescope/builtin/__internal.lua +++ b/lua/telescope/builtin/__internal.lua @@ -974,6 +974,7 @@ internal.buffers = function(opts) default_selection_index = default_selection_idx, attach_mappings = function(_, map) map({ "i", "n" }, "", actions.delete_buffer) + return true end, }) :find()