From c002ef8cdd07fb0b2983c61a3fac2598664fccd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Tue, 16 Sep 2025 16:19:08 +0800 Subject: [PATCH] nvim/telescope: remap hsplit binding is more coherent with the s binding --- .config/nvim/plugin/telescope.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.config/nvim/plugin/telescope.lua b/.config/nvim/plugin/telescope.lua index 9cb1123b..21aaef03 100644 --- a/.config/nvim/plugin/telescope.lua +++ b/.config/nvim/plugin/telescope.lua @@ -26,10 +26,16 @@ telescope.setup { [""] = actions.to_fuzzy_refine, [""] = actions.cycle_history_prev, [""] = actions.cycle_history_next, + + [""] = actions.nop, + [""] = actions.select_horizontal, }, i = { [""] = actions.cycle_history_prev, [""] = actions.cycle_history_next, + + [""] = actions.nop, + [""] = actions.select_horizontal, }, }, layout_config = { height = 0.5 },