From b4c741d802d13790f2d19fe99537cfd31dcb48a6 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Mon, 25 Aug 2025 10:44:12 +0200 Subject: [PATCH] [Telescope] Fix error in conf --- nvim/lua/plugins/nav/telescope.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/lua/plugins/nav/telescope.lua b/nvim/lua/plugins/nav/telescope.lua index a186df2..1a1d64a 100755 --- a/nvim/lua/plugins/nav/telescope.lua +++ b/nvim/lua/plugins/nav/telescope.lua @@ -15,8 +15,8 @@ return { i = { [""] = actions.move_selection_next, [""] = actions.move_selection_previous, - [""] = actions.smart_add_selected_to_qflist, - [""] = actions.smart_send_selected_to_qflist, + [""] = actions.smart_add_to_qflist, + [""] = actions.smart_send_to_qflist, }, }, },