Last active
August 29, 2015 13:56
-
-
Save KainokiKaede/8934370 to your computer and use it in GitHub Desktop.
This is a setting file for AutoHotkey. It changes Numpad 1, 4, 7, and Numlock keys to Option, Shift, Command, and Escape keys, respectively. Also, it disables non-numeric functions of a numpad.
This file contains 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
; KainokiKaede's settings: | |
NumLock::Escape | |
Numpad1::LAlt | |
Numpad4::LShift | |
Numpad7::LControl | |
; Prevent Enter from being taken by plugins. | |
NumpadEnter::Space | |
NumpadIns::Numpad0 | |
NumpadEnd::LAlt | |
NumpadDown::Numpad2 | |
NumpadPgDn::Numpad3 | |
NumpadLeft::LShift | |
NumpadClear::Numpad5 | |
NumpadRight::Numpad6 | |
NumpadHome::LControl | |
NumpadUp::Numpad8 | |
NumpadPgUp::Numpad9 | |
NumpadDel::NumpadDot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment