From dcea201679fde2391986af34f377154ec1a7249b Mon Sep 17 00:00:00 2001 From: Brian Di Palma <1597820+briandipalma@users.noreply.github.com> Date: Wed, 1 Mar 2023 10:36:20 +0000 Subject: [PATCH] feat(telescope): Add open selected with trouble keymap --- 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 d1c2a7f5..998c60f7 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,