Skip to content

Instantly share code, notes, and snippets.

@joakin
Created May 27, 2013 09:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joakin/5656110 to your computer and use it in GitHub Desktop.
Save joakin/5656110 to your computer and use it in GitHub Desktop.
Autohotkey custom script. Features reverse scroll wheel and CapsLock to Ctrl map.
; # - winkey
; + - shift
; ^ - ctrl
; ! - alt
;
; Reverse scrolling
;
WheelUp::
Send {WheelDown}
Return
WheelDown::
Send {WheelUp}
Return
;
; CapsLock to Ctrl map
;
Capslock::Ctrl
;Ctrl::Esc
;Esc::`
;`::Esc
;!a::
;MsgBox You pressed %A_ThisHotkey%.
;return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment