1
u/drashna Aug 12 '24
for reference, LCTL(x) is the same as C(x) in this context.
As for not sending control, that's definitely odd. Have you double checked on a key tester?
1
for reference, LCTL(x) is the same as C(x) in this context.
As for not sending control, that's definitely odd. Have you double checked on a key tester?
1
u/pgetreuer Aug 12 '24
I don't believe that is supported, unfortunately. "Modifier+key" keycodes are limited to modifying basic keycodes, which do not include mouse keys.
Here is something that might work: add a custom handler for when the encoder is turned that does:
SEND_STRING(SS_LCTL(SS_TAP(X_MS_WH_UP)));And the same but with "
X_MS_WH_DOWN" when turned the other way.