summaryrefslogtreecommitdiff
path: root/app/dts
diff options
context:
space:
mode:
authorOkke Formsma <okke@formsma.nl>2021-02-06 21:47:21 +0100
committerPete Johanson <peter@peterjohanson.com>2021-02-10 07:55:12 -0500
commitaf9d6e9b0551f735382ce6576b33e29a86329fa3 (patch)
tree17e194b3738d75e91e7138ea28f670fe489f4ced /app/dts
parent2af794eed3fe03b3c3ab904bb02b3953d234adc0 (diff)
style(hold-tap)!: Write hold-tap params with dashes
tapping_term_ms -> tapping-term-ms quick_tap_ms -> quick-tap-ms The old style works, although it's deprecated.
Diffstat (limited to 'app/dts')
-rw-r--r--app/dts/behaviors/layer_tap.dtsi2
-rw-r--r--app/dts/behaviors/mod_tap.dtsi2
-rw-r--r--app/dts/bindings/behaviors/zmk,behavior-hold-tap.yaml8
3 files changed, 8 insertions, 4 deletions
diff --git a/app/dts/behaviors/layer_tap.dtsi b/app/dts/behaviors/layer_tap.dtsi
index b4539b3..21fd9d5 100644
--- a/app/dts/behaviors/layer_tap.dtsi
+++ b/app/dts/behaviors/layer_tap.dtsi
@@ -11,7 +11,7 @@
label = "LAYER_TAP";
#binding-cells = <2>;
flavor = "tap-preferred";
- tapping_term_ms = <200>;
+ tapping-term-ms = <200>;
bindings = <&mo>, <&kp>;
};
};
diff --git a/app/dts/behaviors/mod_tap.dtsi b/app/dts/behaviors/mod_tap.dtsi
index 79ce10c..7a98713 100644
--- a/app/dts/behaviors/mod_tap.dtsi
+++ b/app/dts/behaviors/mod_tap.dtsi
@@ -11,7 +11,7 @@
label = "MOD_TAP";
#binding-cells = <2>;
flavor = "hold-preferred";
- tapping_term_ms = <200>;
+ tapping-term-ms = <200>;
bindings = <&kp>, <&kp>;
};
};
diff --git a/app/dts/bindings/behaviors/zmk,behavior-hold-tap.yaml b/app/dts/bindings/behaviors/zmk,behavior-hold-tap.yaml
index 56f0cc2..50fa5d5 100644
--- a/app/dts/bindings/behaviors/zmk,behavior-hold-tap.yaml
+++ b/app/dts/bindings/behaviors/zmk,behavior-hold-tap.yaml
@@ -11,11 +11,15 @@ properties:
bindings:
type: phandles
required: true
- tapping_term_ms:
+ tapping-term-ms:
type: int
- quick_tap_ms:
+ tapping_term_ms: # deprecated
+ type: int
+ quick-tap-ms:
type: int
default: -1
+ quick_tap_ms: # deprecated
+ type: int
flavor:
type: string
required: false