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.
This commit is contained in:
parent
454c4132d4
commit
614dc93569
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue