Skip to content

Instantly share code, notes, and snippets.

@599316527
Last active August 29, 2015 14:26
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 599316527/7043b84489f2a39d8d92 to your computer and use it in GitHub Desktop.
Save 599316527/7043b84489f2a39d8d92 to your computer and use it in GitHub Desktop.
My Win10 AutoHotKey Config
; Press Middle Mouse Button to active Mission Control
MButton::Send, #{Tab}
; OSX-Like Reversed Scroll
WheelUp::Send, {WheelDown 1}
WheelDown::Send, {WheelUp 1}
; Vim-Like Cursor Move
; Physical CapsLock Key has been remapped as Esc by KeyTweak
Esc & k::Send, {Up}
Esc & h::Send, {Left}
Esc & j::Send, {Down}
Esc & l::Send, {Right}
Esc & Tab::Send, {Capslock}
Esc::Send, {Esc}
; Multiple Desktop Switch
^Left::Send, #^{Left}
^Right::Send, #^{Right}
^Down::Send, #{Tab}
; Move Cursor
; ^a::Send, {Home} ; Ctrl+a has been taken by system
^e::Send, {End} ; Ctrl+e
; Active Global Search / Cortana
#Space::Send, #s ; Win+Space
; Chrome Tab Switch
^+[::Send, ^{PgUp} ; Ctrl+Shift+[
^+]::Send, ^{PgDn} ; Ctrl+Shift+]
; Assign the toggle-suspend function to a hotkey
^!s::Suspend ; Ctrl+Alt+s
; --------------------------
; My OS X key binding
; https://github.com/599316527/my-karabiner-configuration
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment