Created
October 28, 2024 14:34
-
-
Save sinbad/090739d6e2f8a2de2537026d6de7c565 to your computer and use it in GitHub Desktop.
AutoHotkey script to emulate numpad with Right Control
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
#Requires AutoHotkey v2.0 | |
; Use Right-Control to make 0-9 and -+/* symbols their numpad versions | |
>^1::Numpad1 | |
>^2::Numpad2 | |
>^3::Numpad3 | |
>^4::Numpad4 | |
>^5::Numpad5 | |
>^6::Numpad6 | |
>^7::Numpad7 | |
>^8::Numpad8 | |
>^9::Numpad9 | |
>^0::Numpad0 | |
>^-::NumpadSub | |
>^+::NumpadAdd | |
>^/::NumpadDiv | |
>^*::NumpadMult |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment