Skip to content

Instantly share code, notes, and snippets.

@motleytech
Last active June 23, 2016 21:07
Show Gist options
  • Save motleytech/2e07d5bec7e9807916b9242cff128ed6 to your computer and use it in GitHub Desktop.
Save motleytech/2e07d5bec7e9807916b9242cff128ed6 to your computer and use it in GitHub Desktop.
os x key emulation in windows
; Show on all desktops and Always on top shortcuts for windows
WS_EX_TOOLWINDOW := 0x00000080
+MButton::WinSet, ExStyle, ^%WS_EX_TOOLWINDOW%, A
^MButton::WinSet, AlwaysOnTop, toggle, A
; osx key emulation
#Right::send {End}
#Left::send {Home}
#+Right::send {LShift down}{End}{LShift up}
#+Left::send {LShift down}{Home}{LShift up}
#s::send {LCtrl down}s{LCtrl up}
#c::send {LCtrl down}c{LCtrl up}
#v::send {LCtrl down}v{LCtrl up}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment