From 269a54e865be55c1d5d2e5c0c1a8be3ddafb67ec Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Fri, 14 Oct 2022 10:31:45 +0200 Subject: [PATCH] vim: fix telescope mapping It turns out that `` collides with ``. --- config/nvim/after/plugin/telescope.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/nvim/after/plugin/telescope.lua b/config/nvim/after/plugin/telescope.lua index 2943075..0755161 100644 --- a/config/nvim/after/plugin/telescope.lua +++ b/config/nvim/after/plugin/telescope.lua @@ -8,7 +8,7 @@ local common_mappings = { [''] = actions_layout.cycle_layout_next, [''] = actions_layout.cycle_layout_prev, - [''] = actions_layout.toggle_mirror, + [''] = actions_layout.toggle_mirror, [''] = actions.smart_send_to_qflist + actions.open_qflist, }