kiibohd / controller

Kiibohd Controller
GNU General Public License v3.0
806 stars 270 forks source link

Text Macros not working #131

Open M1K8 opened 8 years ago

M1K8 commented 8 years ago

When assigning a text macro to a key by manually editing a kll file, the macro will not activate when the key is pressed.

haata commented 8 years ago

Please give a short kll example.

On Sun, Jul 24, 2016, 11:14 M1K3L08 notifications@github.com wrote:

When assigning a text macro to a key by manually editing a kll file, the macro will not activate when the key is pressed.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/kiibohd/controller/issues/131, or mute the thread https://github.com/notifications/unsubscribe-auth/AABbqScWG_koUBv3S8k6otmiRAfqPnbpks5qY6uAgaJpZM4JToWC .

M1K8 commented 8 years ago

U"F13" : 'myemail@test.net';

When pressing F13, this is not printed

dfaught commented 6 years ago

I experience an issue very similar to this one. The following macros do activate when the key is pressed but not all of the result is delivered. For example, I have these macros defined:

U"T" : 'ptype '; U"E" : 'explore '; U"W" : 'whatis ';

The output received when activating "T" is "ptye ". Notice the second 'p' is stripped. The "E" macro has similar behavior, the last 'e' is stripped.

The "W" macro works as expected, but it does not duplicate any letters within the result. Is there some sort of "debounce" algorithm at work which is preventing all of the characters in the result from being processed.

I've started looking through the generated key maps to see if I can figure out what is going wrong. Maybe I'll be less of a seagull soon :)