From f336f8cfab38a82f9f00df380d28f0c2a572f862 Mon Sep 17 00:00:00 2001 From: Ahmni Pang-Johnson <56799876+ahmni@users.noreply.github.com> Date: Tue, 19 Dec 2023 17:58:36 -0600 Subject: [PATCH] feat(mappings): add horizontal scrolling to normal mode defaults Co-authored-by: Ahmni Pang-Johnson --- lua/telescope/mappings.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/telescope/mappings.lua b/lua/telescope/mappings.lua index 45d9afa..d387cb2 100644 --- a/lua/telescope/mappings.lua +++ b/lua/telescope/mappings.lua @@ -195,9 +195,13 @@ mappings.default_mappings = config.values.default_mappings [""] = actions.preview_scrolling_up, [""] = actions.preview_scrolling_down, + [""] = actions.preview_scrolling_left, + [""] = actions.preview_scrolling_right, [""] = actions.results_scrolling_up, [""] = actions.results_scrolling_down, + [""] = actions.results_scrolling_left, + [""] = actions.results_scrolling_right, ["?"] = actions.which_key, },