From 1fbc072e4c05986de7df64ddcc1e6e305f2c4c13 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Sat, 23 Aug 2025 17:04:52 +0200 Subject: [PATCH] [Telescope] Improve keybinds --- nvim/lua/plugins/nav/telescope.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nvim/lua/plugins/nav/telescope.lua b/nvim/lua/plugins/nav/telescope.lua index bd6b0fd..a186df2 100755 --- a/nvim/lua/plugins/nav/telescope.lua +++ b/nvim/lua/plugins/nav/telescope.lua @@ -15,7 +15,8 @@ return { i = { [""] = actions.move_selection_next, [""] = actions.move_selection_previous, - [""] = actions.send_selected_to_qflist + actions.open_qflist, -- TODO investigate + [""] = actions.smart_add_selected_to_qflist, + [""] = actions.smart_send_selected_to_qflist, }, }, }, @@ -64,5 +65,9 @@ return { -- Implementations opts.desc = "Show implementations" vim.keymap.set("n", "fi", ":Telescope lsp_implementations", opts) + + -- quickfix + opts.desc = "Show quickfix list" + vim.keymap.set("n", "fq", ":Telescope quickfix", opts) end, }