Created
February 20, 2018 09:58
-
-
Save kohnakagawa/6187bf2992846fdc44f947f96383b3d9 to your computer and use it in GitHub Desktop.
SandS for Windows 10 using AutoHotKey
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
; Edit registry to swap. | |
; - Space <=> LShift | |
*~a:: | |
*~b:: | |
*~c:: | |
*~d:: | |
*~e:: | |
*~f:: | |
*~g:: | |
*~h:: | |
*~i:: | |
*~j:: | |
*~k:: | |
*~l:: | |
*~m:: | |
*~n:: | |
*~o:: | |
*~p:: | |
*~q:: | |
*~r:: | |
*~s:: | |
*~t:: | |
*~u:: | |
*~v:: | |
*~w:: | |
*~x:: | |
*~y:: | |
*~z:: | |
*~1:: | |
*~2:: | |
*~3:: | |
*~4:: | |
*~5:: | |
*~6:: | |
*~7:: | |
*~8:: | |
*~9:: | |
*~0:: | |
*~F1:: | |
*~F2:: | |
*~F3:: | |
*~F4:: | |
*~F5:: | |
*~F6:: | |
*~F7:: | |
*~F8:: | |
*~F9:: | |
*~F10:: | |
*~F11:: | |
*~F12:: | |
*~`:: | |
*~~:: | |
*~!:: | |
*~@:: | |
*~#:: | |
*~$:: | |
*~%:: | |
*~^:: | |
*~&:: | |
*~*:: | |
*~(:: | |
*~):: | |
*~-:: | |
*~_:: | |
*~=:: | |
*~+:: | |
*~[:: | |
*~{:: | |
*~]:: | |
*~}:: | |
*~\:: | |
*~|:: | |
*~;:: | |
*~':: | |
*~":: | |
*~,:: | |
*~<:: | |
*~.:: | |
*~>:: | |
*~/:: | |
*~?:: | |
*~Esc:: | |
*~Tab:: | |
*~Space:: | |
*~LAlt:: | |
*~RAlt:: | |
*~LShift:: | |
*~RShift:: | |
*~RCtrl:: | |
*~LCtrl:: | |
*~Left:: | |
*~Right:: | |
*~Up:: | |
*~Down:: | |
*~Enter:: | |
*~PrintScreen:: | |
*~Delete:: | |
*~Home:: | |
*~End:: | |
*~PgUp:: | |
*~PgDn:: | |
Return | |
LShift up:: | |
if (A_PriorHotkey == "*~LShift") | |
{ | |
Send, {space} | |
} | |
Return | |
; These remaps enable <ANY>+SPACE shortcut combination. | |
^LShift::Send, ^{space} | |
#LShift::Send, #{space} | |
!LShift::Send, !{space} | |
; If you use these remaps, | |
; you must push SFIFT key at first | |
; when sending shortcut combination keys including SHIFT key. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment