diff options
author | honorless <[email protected]> | 2024-01-08 21:29:11 -0500 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2024-03-18 10:15:50 -0700 |
commit | 6f2e19ff88efcd4ca9da2da4996d10f24d30b333 (patch) | |
tree | fc77d73aea4197bbbfd566349c904a69264a1516 /app | |
parent | 3a3897968461141bcf6cf2fadef039ea9ecbd727 (diff) | |
download | zmk-6f2e19ff88efcd4ca9da2da4996d10f24d30b333.tar.gz zmk-6f2e19ff88efcd4ca9da2da4996d10f24d30b333.zip |
refactor: replace quick_tap_ms with quick-tap-ms
* The underscore form of this property is deprecated.
Diffstat (limited to 'app')
-rw-r--r-- | app/boards/arm/ferris/ferris_rev02.keymap | 2 | ||||
-rw-r--r-- | app/boards/shields/hummingbird/hummingbird.keymap | 2 | ||||
-rw-r--r-- | app/boards/shields/jian/jian.keymap | 4 | ||||
-rw-r--r-- | app/tests/tap-dance/behavior_keymap.dtsi | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/app/boards/arm/ferris/ferris_rev02.keymap b/app/boards/arm/ferris/ferris_rev02.keymap index 9733570c27..b7668416b3 100644 --- a/app/boards/arm/ferris/ferris_rev02.keymap +++ b/app/boards/arm/ferris/ferris_rev02.keymap @@ -14,7 +14,7 @@ #define SYM_L 4 // Using layer taps on thumbs, having quick tap as well helps w/ repeating space/backspace -< { quick_tap_ms = <200>; }; +< { quick-tap-ms = <200>; }; / { behaviors { diff --git a/app/boards/shields/hummingbird/hummingbird.keymap b/app/boards/shields/hummingbird/hummingbird.keymap index 0b9ee76bb0..c96071f6c2 100644 --- a/app/boards/shields/hummingbird/hummingbird.keymap +++ b/app/boards/shields/hummingbird/hummingbird.keymap @@ -13,7 +13,7 @@ #define SYM_L 3 // Using layer taps on thumbs, having quick tap as well helps w/ repeating space/backspace -< { quick_tap_ms = <200>; }; +< { quick-tap-ms = <200>; }; / { behaviors { diff --git a/app/boards/shields/jian/jian.keymap b/app/boards/shields/jian/jian.keymap index e8f7dcc87a..bfd2918cc7 100644 --- a/app/boards/shields/jian/jian.keymap +++ b/app/boards/shields/jian/jian.keymap @@ -13,8 +13,8 @@ #define RSE 2 #define ADJ 3 -< { quick_tap_ms = <200>; }; -&mt { quick_tap_ms = <200>; }; +< { quick-tap-ms = <200>; }; +&mt { quick-tap-ms = <200>; }; / { keymap { diff --git a/app/tests/tap-dance/behavior_keymap.dtsi b/app/tests/tap-dance/behavior_keymap.dtsi index 66ffdf2e0c..e45aba4001 100644 --- a/app/tests/tap-dance/behavior_keymap.dtsi +++ b/app/tests/tap-dance/behavior_keymap.dtsi @@ -8,7 +8,7 @@ compatible = "zmk,behavior-hold-tap"; #binding-cells = <2>; tapping-term-ms = <200>; - quick_tap_ms = <0>; + quick-tap-ms = <0>; flavor = "tap-preferred"; bindings = <&kp>, <&kp>; }; |