From c90a5a22107e693db7bbb70a8198af2cdd4167b0 Mon Sep 17 00:00:00 2001 From: Joshua Finch Date: Wed, 2 Oct 2024 18:04:07 -0500 Subject: [PATCH] fix: changing both the buffer listing and file explorer shortcuts to be more consistent with the other telescope shortcuts, starting with a semicolon --- nvim/lua/plugins/telescope.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/lua/plugins/telescope.lua b/nvim/lua/plugins/telescope.lua index ee9059f..f52f3a0 100644 --- a/nvim/lua/plugins/telescope.lua +++ b/nvim/lua/plugins/telescope.lua @@ -113,7 +113,7 @@ return { end, }, { - '\\\\', + ';b', function() require('telescope.builtin').buffers() end, @@ -167,7 +167,7 @@ return { end }, { - 'sf', + ';e', function() local telescope = require('telescope')