diff options
author | Okke Formsma <[email protected]> | 2021-02-06 21:47:21 +0100 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2021-02-10 07:55:12 -0500 |
commit | af9d6e9b0551f735382ce6576b33e29a86329fa3 (patch) | |
tree | 17e194b3738d75e91e7138ea28f670fe489f4ced /app/dts/bindings/behaviors | |
parent | 2af794eed3fe03b3c3ab904bb02b3953d234adc0 (diff) | |
download | zmk-af9d6e9b0551f735382ce6576b33e29a86329fa3.tar.gz zmk-af9d6e9b0551f735382ce6576b33e29a86329fa3.zip |
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/bindings/behaviors')
-rw-r--r-- | app/dts/bindings/behaviors/zmk,behavior-hold-tap.yaml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app/dts/bindings/behaviors/zmk,behavior-hold-tap.yaml b/app/dts/bindings/behaviors/zmk,behavior-hold-tap.yaml index 56f0cc2721..50fa5d505e 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 |