You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Page Up / Page Down no longer captured as wrong key — navigation-cluster keys (Page Up, Page Down, Home, End, Insert) share Windows scan codes with numpad keys. The capture logic now checks the key name first and only uses scan codes as a fallback for bare digits, so nav keys are always identified correctly.
Shift, Ctrl, Alt can now be bound — these were incorrectly blocked during key capture. Only Windows key, Num Lock, Caps Lock, and Scroll Lock are excluded (Windows key opens Start Menu; lock keys toggle state rather than trigger actions).
Numpad hotkeys won't ghost-fire on nav keys — when a numpad key is registered as a hotkey, the callback now verifies \is_keypad\ so Page Up / Home / End with the same scan code don't accidentally trigger it.