Skip to content

Commit

Permalink
Switch back to tap-preferred behavior for right-hand homerow
Browse files Browse the repository at this point in the history
  • Loading branch information
0xcharly committed Mar 29, 2024
1 parent 4368182 commit 9444525
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions config/skeletyl.keymap
Original file line number Diff line number Diff line change
Expand Up @@ -223,24 +223,24 @@
lhm: left_hand_homerow_mods {
compatible = "zmk,behavior-hold-tap";
#binding-cells = <2>;
tapping-term-ms = <200>;
tapping-term-ms = <150>;
quick-tap-ms = <200>;
require-prior-idle-ms = <125>;
flavor = "tap-preferred";
bindings = <&kp>, <&kp>;
hold-trigger-key-positions = <5 6 7 8 9 15 16 17 18 19 25 26 27 28 29 33 34 35>; // Right-hand keys.
};

// Tap-unless-interrupted flavored homerow mods to use on the left side keys only.
// Tap-preferred flavored homerow mods to use on the left side keys only.
rhm: right_hand_homerow_mods {
compatible = "zmk,behavior-hold-tap";
#binding-cells = <2>;
tapping-term-ms = <200>;
tapping-term-ms = <150>;
quick-tap-ms = <200>;
require-prior-idle-ms = <125>;
flavor = "tap-unless-interrupted"; // Produces tap if held longer than tapping-term-ms.
flavor = "tap-preferred"; // Produces tap if held longer than tapping-term-ms.
bindings = <&kp>, <&kp>;
hold-trigger-key-positions = <0 1 2 3 4 10 11 12 13 14 20 21 22 23 24 30 31 32>; // Right-hand keys.
hold-trigger-key-positions = <0 1 2 3 4 10 11 12 13 14 20 21 22 23 24 30 31 32>; // Left-hand keys.
};
};

Expand Down

0 comments on commit 9444525

Please sign in to comment.