Skip to content

Commit

Permalink
fix: split most macros into individual keypresses
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffDess committed May 24, 2024
1 parent 25b8a30 commit 02932a0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions behaviors/macros.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,33 @@

// Fat arrow padded with spaces: ' => '
ZMK_MACRO(FAT_ARROW, bindings =
<&kp SPACE &kp EQUAL>,
<&kp SPACE>,
<&kp EQUAL>,
<&kp RA(DOT)>,
<&kp SPACE>;
)

// Thin arrow padded with spaces: ' -> '
ZMK_MACRO(ARROW, bindings =
<&kp SPACE &kp MINUS>,
<&kp SPACE >,
<&kp MINUS>,
<&kp RA(DOT)>,
<&kp SPACE>;
)

// Greater than or equal to: ' >= '
ZMK_MACRO(GTE, bindings =
<&kp SPACE>,
<&kp GRTHAN>, <&kp EQUAL>,
<&kp GRTHAN>,
<&kp EQUAL>,
<&kp SPACE>;
)

// Less than or equal to: ' <= '
ZMK_MACRO(LTE, bindings =
<&kp SPACE>,
<&kp LETHAN>, <&kp EQUAL>,
<&kp LETHAN>,
<&kp EQUAL>,
<&kp SPACE>;
)

Expand Down

0 comments on commit 02932a0

Please sign in to comment.