global-quick-tap-ms for combos

Testing https://github.com/zmkfirmware/zmk/pull/1387
This commit is contained in:
urob 2022-07-19 13:19:12 -04:00
parent bba4fbaa5d
commit a50043e9b9
2 changed files with 5 additions and 4 deletions

View file

@ -72,8 +72,8 @@ ISSUES, WORKAROUNDS and a "ZMK-WISHLIST"
ZMK_BEHAVIOR(hml, hold_tap, // left-hand HRMs
flavor = "balanced";
tapping-term-ms = <280>;
quick-tap-ms = <125>;
global-quick-tap;
quick-tap-ms = <175>;
global-quick-tap-ms = <125>;
bindings = <&kp>, <&kp>;
hold-trigger-key-positions = <KEYS_RT THUMBS HRM_LT>; // include left-hand HRMs for chording
)
@ -81,8 +81,8 @@ ZMK_BEHAVIOR(hml, hold_tap, // left-hand HRMs
ZMK_BEHAVIOR(hmr, hold_tap, // right-hand HRMs
flavor = "balanced";
tapping-term-ms = <280>;
quick-tap-ms = <125>;
global-quick-tap;
quick-tap-ms = <175>;
global-quick-tap-ms = <125>;
bindings = <&kp>, <&kp>;
hold-trigger-key-positions = <KEYS_LT THUMBS HRM_RT>; // include right-hand HRMs for chording
)

View file

@ -54,6 +54,7 @@
combos { \
compatible = "zmk,combos"; \
combo_ ## name { \
global-quick-tap-ms = <125>; \
timeout-ms = <COMBO_TERM>; \
bindings = <combo_bindings>; \
key-positions = <keypos>; \