Last active
June 4, 2020 16:53
-
-
Save cnmoro/0daa970a56a03852838e3ff85dc5330b to your computer and use it in GitHub Desktop.
Motospeed CK61 Fix 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
VSCODE: "keyboard.dispatch": "keyCode" | |
Motospeed Driver -> Alt_R:Up, Win_R:F2, Ctrl_R:Macro F11+F12, Fn:Down, CapsLock:ScrollLock, BackSpace:Delete | |
Shift & Esc:: | |
Send {SHIFT}{~} | |
Return | |
Scrolllock & Esc:: | |
Send {``} | |
Return | |
Scrolllock & a:: | |
Send {left} | |
Return | |
Scrolllock & s:: | |
Send {down} | |
Return | |
Scrolllock & d:: | |
Send {right} | |
Return | |
Scrolllock & w:: | |
Send {up} | |
Return | |
Scrolllock & 1:: | |
Send {F1} | |
Return | |
Scrolllock & 2:: | |
Send {F2} | |
Return | |
Scrolllock & 3:: | |
Send {F3} | |
Return | |
Scrolllock & 4:: | |
Send {F4} | |
Return | |
Scrolllock & 5:: | |
Send {F5} | |
Return | |
Scrolllock & 6:: | |
Send {F6} | |
Return | |
Scrolllock & 7:: | |
Send {F7} | |
Return | |
Scrolllock & 8:: | |
Send {F8} | |
Return | |
Scrolllock & 9:: | |
Send {F9} | |
Return | |
Scrolllock & 0:: | |
Send {F10} | |
Return | |
Scrolllock & -:: | |
Send {F11} | |
Return | |
Scrolllock & =:: | |
Send {F12} | |
Return | |
Scrolllock & p:: | |
Send {PrintScreen} | |
Return | |
Scrolllock & z:: | |
Send {PgUp} | |
Return | |
Scrolllock & x:: | |
Send {PgDn} | |
Return | |
Scrolllock & q:: | |
Send {Home} | |
Return | |
Scrolllock & e:: | |
Send {End} | |
Return | |
Scrolllock & r:: | |
Send {Insert} | |
Return | |
Delete:: | |
Send {Backspace} | |
Return | |
Scrolllock & Delete:: | |
Send {Delete} | |
Return | |
Scrolllock & c:: | |
SetCapsLockState, % (t:=!t) ? "On" : "Off" | |
Return | |
Scrolllock:: | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment