Open HiZhaoxiaoyang opened 7 years ago
for instance , I pressed key 'a' and hold it, then tap other keys kown and up, the key 'a' will pressed continuously until key upped.
code like this:
`listener.single_repate("a", function() {
console.log("a will repeat continuously before key up");
});`
That looks like your system is sending multiple key down events, which is pretty typical. I'm not totally clear on the behavior you're hoping for.
for instance , I pressed key 'a' and hold it, then tap other keys kown and up, the key 'a' will pressed continuously until key upped.
code like this:
`listener.single_repate("a", function() {
});`