From f9b7406df96cf1fad5685865ffef5ec725573f1c Mon Sep 17 00:00:00 2001 From: Brian Di Palma <1597820+briandipalma@users.noreply.github.com> Date: Wed, 1 Mar 2023 12:10:04 +0000 Subject: [PATCH] feat(telescope): Add open selected with trouble keymap (#357) --- lua/lazyvim/plugins/editor.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/lazyvim/plugins/editor.lua b/lua/lazyvim/plugins/editor.lua index 0460bc38..b5e3d071 100644 --- a/lua/lazyvim/plugins/editor.lua +++ b/lua/lazyvim/plugins/editor.lua @@ -140,6 +140,9 @@ return { [""] = function(...) return require("trouble.providers.telescope").open_with_trouble(...) end, + [""] = function(...) + return require("trouble.providers.telescope").open_selected_with_trouble(...) + end, [""] = function() Util.telescope("find_files", { no_ignore = true })() end,