From f36cfb2a16e7713d59d369cb29a3cc335c4851fd Mon Sep 17 00:00:00 2001 From: Benjamin Kyd Date: Thu, 20 Apr 2023 14:55:49 +0100 Subject: [PATCH] that was silly --- common/.config/nvim/lua/plugin-config/telescope.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/.config/nvim/lua/plugin-config/telescope.lua b/common/.config/nvim/lua/plugin-config/telescope.lua index 5bff206..b84c385 100644 --- a/common/.config/nvim/lua/plugin-config/telescope.lua +++ b/common/.config/nvim/lua/plugin-config/telescope.lua @@ -50,15 +50,15 @@ require('telescope').setup { -- preview_cutoff = 120, mappings = { i = { - [''] = actions.move_selection_next, - [''] = actions.move_selection_previous, + [''] = actions.move_selection_next, + [''] = actions.move_selection_previous, [''] = actions.smart_send_to_qflist + actions.open_qflist, [''] = 'delete_buffer', [''] = actions.select_default + actions.center, }, n = { - [''] = actions.move_selection_next, - [''] = actions.move_selection_previous, + [''] = actions.move_selection_next, + [''] = actions.move_selection_previous, [''] = actions.smart_send_to_qflist + actions.open_qflist, [''] = 'delete_buffer', }