From 7b5296560dcb301013bf70cfbb379fbab32f6609 Mon Sep 17 00:00:00 2001 From: Kurtis Lew Date: Mon, 6 Jun 2022 16:45:54 -0700 Subject: [PATCH] Fix: Ensure CAPSLOCK resolves on tap, LSHIFT resolves on hold --- docs/docs/behaviors/tap-dance.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/behaviors/tap-dance.md b/docs/docs/behaviors/tap-dance.md index 1b12db9f..65d5e765 100644 --- a/docs/docs/behaviors/tap-dance.md +++ b/docs/docs/behaviors/tap-dance.md @@ -76,7 +76,7 @@ Alphanumeric [`key press`](key-press.md) bindings, like those used for `td0`, wi -This example configures a mod-tap inside a tap-dance named `td_mt` that outputs `LSHIFT` on a single tap, `CAPSLOCK` on a single press and hold, and `LCTRL` on double-tap. +This example configures a mod-tap inside a tap-dance named `td_mt` that outputs `CAPSLOCK` on a single tap, `LSHIFT` on a single press and hold, and `LCTRL` when the tap-dance is pressed twice. ```title="Advanced Tap-Dance Example: Nested Mod-Tap" #include @@ -89,7 +89,7 @@ This example configures a mod-tap inside a tap-dance named `td_mt` that outputs label = "TAP_DANCE_MOD_TAP"; #binding-cells = <0>; tapping-term-ms = <200>; - bindings = <&mt CAPSLOCK LSHIFT>, <&kp LCTRL>; + bindings = <&mt LSHIFT CAPSLOCK>, <&kp LCTRL>; }; };