Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NumPad bindings Trinity #8

Closed
filosofis opened this issue Mar 26, 2021 · 1 comment
Closed

NumPad bindings Trinity #8

filosofis opened this issue Mar 26, 2021 · 1 comment

Comments

@filosofis
Copy link

Hey I just tried running this on a Naga Trinity. The default configs work, and binding to various keys like letters and numbers.
However I was not able to bind to numpad keys. This is the config I attempted to run.

config=defaultConfig

1 - key=KP_1
2 - key=KP_2
3 - key=KP_3
4 - key=KP_4
5 - key=KP_5
6 - key=KP_6
7 - key=KP_7
8 - key=KP_8
9 - key=KP_9
10 - key=KP_0
11 - key=KP_Add
12 - key=KP_Subtract

configEnd

Im using a Swedish keyboard layout if that might be affecting the issue. Result I get is
2,4,6,8 => down,left,right,up.
1,3,7,9 => End,PgDn,Home,PgUp

@lostallmymoney
Copy link
Owner

I think it's working pretty good only that the KP_* are linked to the non numlocked keys so maybe replace by

config=defaultConfig
1 - key=1
2 - key=2
3 - key=3
4 - key=4
5 - key=5
6 - key=6
7 - key=7
8 - key=8
9 - key=9
10 - key=0
11 - key=0x2b
12 - key=0x2d

#if you want to use the arrows and such :
13 - chmap=noNumLock
configEnd

config=noNumLock
1 - key=KP_1
2 - key=KP_2
3 - key=KP_3
4 - key=KP_4
5 - key=KP_5
6 - key=KP_6
7 - key=KP_7
8 - key=KP_8
9 - key=KP_9
10 - key=KP_0
11 - key=KP_Add
12 - key=KP_Subtract

#if you want to use the numbers and such :
13 - chmap=defaultConfig
configEnd

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants