Last active
June 23, 2016 21:07
-
-
Save motleytech/2e07d5bec7e9807916b9242cff128ed6 to your computer and use it in GitHub Desktop.
os x key emulation in windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 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