From 614dc93569f4af8450c56f9f417615bc0dc2268d Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 26 Jan 2021 23:46:15 -0500 Subject: [PATCH] mouse-wheel-scroll-amount-horizontal = 2 Make hscrolling a little faster. Our windows and displays are large. Scrolling one character at a time is too slow. --- core/core-ui.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/core-ui.el b/core/core-ui.el index 078c048c1..b52adae8e 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -194,7 +194,8 @@ or if the current buffer is read-only or not file-visiting." ;; for tall lines. auto-window-vscroll nil ;; mouse - mouse-wheel-scroll-amount '(2 ((shift) . hscroll))) + mouse-wheel-scroll-amount '(2 ((shift) . hscroll)) + mouse-wheel-scroll-amount-horizontal 2) ;; Remove hscroll-margin in shells, otherwise it causes jumpiness (setq-hook! '(eshell-mode-hook term-mode-hook) hscroll-margin 0)