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
...probably worth noting that QMK's default for this value is actually 0
(a lot of projects began setting it to 10ms because supposedly Windows ignores volume up and down events sent more quickly than that, but 100ms would be quite noticeable)
Hold-tap taps are sent as press immediately followed by release. This can cause compatibility issues with other systems.
QMK has
TAP_CODE_DELAY
for this purpose, default 100ms, https://github.com/qmk/qmk_firmware/blob/master/docs/config_options.md#behaviors-that-can-be-configured.The macros behavior has a
tap-ms
property, implemented withbehavior_queue
, default 100ms, https://zmk.dev/docs/behaviors/macros#tap-time.Hold-tap could be implemented using
behavior_queue
withtap-ms
in the same way as in the macros behavior.It might also be necessary to do this with all behaviors that generate key events, such as shifted keycodes in
kp
. See #756, #759, #815,The text was updated successfully, but these errors were encountered: