Skip to content

Instantly share code, notes, and snippets.

@pioz
Last active January 11, 2022 17:00
Show Gist options
  • Save pioz/c7d58742718516763e53 to your computer and use it in GitHub Desktop.
Save pioz/c7d58742718516763e53 to your computer and use it in GitHub Desktop.
AutoHotkey script for Naga numpad
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
NumpadIns::Numpad0
NumpadEnd::Numpad1
NumpadDown::Numpad2
NumpadPgDn::Numpad3
NumpadLeft::Numpad4
NumpadClear::Numpad5
NumpadRight::Numpad6
NumpadHome::Numpad7
NumpadUp::Numpad8
NumpadPgUp::Numpad9
NumpadDel::NumpadDot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment