From c887281569562211b37549c0ff2552b3902b58e2 Mon Sep 17 00:00:00 2001 From: smashblu <98678476+smashblu@users.noreply.github.com> Date: Fri, 4 Oct 2024 14:59:52 -0700 Subject: [PATCH] Fixed not updating keys --- lua/kickstart/plugins/telescope.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/kickstart/plugins/telescope.lua b/lua/kickstart/plugins/telescope.lua index 78cfa5bf..2ef749f6 100644 --- a/lua/kickstart/plugins/telescope.lua +++ b/lua/kickstart/plugins/telescope.lua @@ -83,7 +83,7 @@ return { vim.keymap.set('n', 'sg', builtin.live_grep, { desc = '[S]earch by [G]rep' }) vim.keymap.set('n', 'sd', builtin.diagnostics, { desc = '[S]earch [D]iagnostics' }) vim.keymap.set('n', 'sr', builtin.resume, { desc = '[S]earch [R]esume' }) - vim.keymap.set('n', 'sr', builtin.registers, { desc = '[S]earch r[E]gisters' }) + vim.keymap.set('n', 'se', builtin.registers, { desc = '[S]earch r[E]gisters' }) vim.keymap.set('n', 's.', builtin.oldfiles, { desc = '[S]earch Recent Files ("." for repeat)' }) vim.keymap.set('n', '', builtin.buffers, { desc = '[ ] Find existing buffers' })