You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(the long time and the puts is just for testing)
However, if I keep it pressed, "Enter" appears in the console several times.
Now that I think about it, this might be intended behavior. If it is, I would like to request some way of doing what I want here; a key which does one key if tapped, and another if pressed for a while.
The text was updated successfully, but these errors were encountered:
I wanted to make a key that presses backspace if tapped, and keypad enter if held for a while. This is what I ended up writing:
kbd.define_mode_key :ENTER_DEL, [ :KC_BSPACE, Proc.new { kbd.send_key(:KC_KP_ENTER); puts "Enter" }, 10000, nil]
(the long time and the puts is just for testing)
However, if I keep it pressed, "Enter" appears in the console several times.
Now that I think about it, this might be intended behavior. If it is, I would like to request some way of doing what I want here; a key which does one key if tapped, and another if pressed for a while.
The text was updated successfully, but these errors were encountered: