From 27cdbb02c1c82bea23fd7921e025d7b31c07d11e Mon Sep 17 00:00:00 2001 From: Devin Lumley <2636402+devinwl@users.noreply.github.com> Date: Mon, 29 Jan 2024 10:18:50 -0800 Subject: [PATCH] feat: add Telescope buffers keybind --- lua/plugins/telescope.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index d9c7326..51e53fb 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -13,6 +13,7 @@ return { vim.keymap.set('n', 'ps', function() builtin.grep_string({ search = vim.fn.input("Grep > ") }) end, { desc = "Grep entire project for string" }) + vim.keymap.set('n', 'b', builtin.buffers, { desc = "Search buffers" }) end }, {