9 lines
158 B
AutoHotkey
9 lines
158 B
AutoHotkey
; mouse bindings
|
|
|
|
; get rid of popup when scrolling a lot
|
|
#MaxHotkeysPerInterval 250
|
|
|
|
; natural scrolling
|
|
WheelUp::Send {WheelDown}
|
|
WheelDown::Send {WheelUp}
|