If I understand correctly this is a current goal:
//TODO: repeat pressed keys,
when passthrough is enabled.
I don't even know if this should be a goal, because the autorepeat when you press down a key, only comes from the driver, good explained in this post. Anyway to achieve something like this, you will probably need to get the current KeyState. There already is a npm package for this, but it would need VK Keycodes to be added. Another way would be to keep track of the KeyStates just with the KBDEvents, inside of MMKBD.
If I understand correctly this is a current goal:
//TODO: repeat pressed keys,when passthrough is enabled.
I don't even know if this should be a goal, because the autorepeat when you press down a key, only comes from the driver, good explained in this post. Anyway to achieve something like this, you will probably need to get the current KeyState. There already is a npm package for this, but it would need VK Keycodes to be added. Another way would be to keep track of the KeyStates just with the KBDEvents, inside of MMKBD.