From c512d01a68a77bf6f24abf2e35a78907d613296e Mon Sep 17 00:00:00 2001 From: Guldoman Date: Tue, 1 Nov 2022 21:20:37 +0100 Subject: [PATCH] Fix horizontal scroll with shift+scroll on MacOS It seems like pressing shift+scroll on MacOS automatically makes it shift+horizontal scroll. --- data/core/keymap-macos.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/core/keymap-macos.lua b/data/core/keymap-macos.lua index 28457fe8..b2bc8faa 100644 --- a/data/core/keymap-macos.lua +++ b/data/core/keymap-macos.lua @@ -34,7 +34,7 @@ local function keymap_macos(keymap) ["cmd+8"] = "root:switch-to-tab-8", ["cmd+9"] = "root:switch-to-tab-9", ["wheel"] = "root:scroll", - ["shift+wheel"] = "root:horizontal-scroll", + ["shift+hwheel"] = "root:horizontal-scroll", ["cmd+f"] = "find-replace:find", ["cmd+r"] = "find-replace:replace",