View difference between Paste ID: RGj2AgUZ and JFcfBA64
SHOW: | | - or go back to the newest paste.
1
; AutoHotKey script ( http://www.autohotkey.com/ )
2
; Inverts the windows scrollwheel (or two-finger drag) scroll direction to
3
; match OSX's "natural" scroll direction. Useful if switching between Win
4
; and OSX using Parallels or Bootcamp
5
6
7
#MaxHotkeysPerInterval 200
8
WheelUp::
9
Send {WheelDown}
10
Return
11
12
WheelDown::
13
Send {WheelUp}
14
Return