From f45c170f2853c1c1492d3f30a950a99d30706ea2 Mon Sep 17 00:00:00 2001 From: Aiden Scandella Date: Mon, 23 Aug 2021 10:07:57 -0700 Subject: [PATCH] fix(pickers): attach_mappings on builtins.buffers needs return (#1155) --- 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 4b2747b..b71811e 100644 --- a/lua/telescope/builtin/internal.lua +++ b/lua/telescope/builtin/internal.lua @@ -665,6 +665,7 @@ internal.buffers = function(opts) vim.api.nvim_win_set_cursor(0, { entry.lnum, entry.col or 0 }) end, } + return true end, }):find() end