From 7df6662394e12cb65593f69b9d6fc0b4d35f3a00 Mon Sep 17 00:00:00 2001 From: Gregory Anders <8965202+gpanders@users.noreply.github.com> Date: Thu, 7 Jul 2022 14:19:35 -0600 Subject: [PATCH] fix: also map for which-key (#2051) Some terminals send Ctrl + / as , not . Map both to the which_key action to cover these cases. --- lua/telescope/mappings.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/telescope/mappings.lua b/lua/telescope/mappings.lua index b7baa16..b7baf41 100644 --- a/lua/telescope/mappings.lua +++ b/lua/telescope/mappings.lua @@ -33,6 +33,7 @@ mappings.default_mappings = config.values.default_mappings [""] = actions.send_to_qflist + actions.open_qflist, [""] = actions.send_selected_to_qflist + actions.open_qflist, [""] = actions.complete_tag, + [""] = actions.which_key, [""] = actions.which_key, -- keys from pressing [""] = { "", type = "command" }, },