I'm trying to understand this value assignment:
(setq mouse-wheel-scroll-amount '(2 ((shift) . 1)))
I know that shift
is a bitwise shift. But I don't understand what is the result of this operation here (what is the value of mouse-wheel-scroll-amount
). And for that matter, why did the coder decide to use this operation rather than giving a decimal value here.
C-h v mouse-wheel-scroll-amount
– Drew May 18 '16 at 01:45