From 6573483a1096a1ab91c459a30e08665b1161b8fa Mon Sep 17 00:00:00 2001 From: Okke Formsma Date: Fri, 6 Nov 2020 14:40:56 +0100 Subject: [PATCH] update errors in mod-tap docs --- docs/docs/behaviors/mod-tap.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/docs/behaviors/mod-tap.md b/docs/docs/behaviors/mod-tap.md index da8b438a..6404a220 100644 --- a/docs/docs/behaviors/mod-tap.md +++ b/docs/docs/behaviors/mod-tap.md @@ -5,7 +5,10 @@ sidebar_label: Mod-Tap ## Summary -The Mod-Tap sends a different keypress, if it's tapped or held. When you tap the key shortly, the first keycode is sent. If you hold the key for longer than 200ms, the second keycode is sent. +The Mod-Tap behavior sends a different keypress, depending on whether it's held or tapped. + +- If you hold the key for longer than 200ms, the first keycode ("mod") is sent. +- If you tap the key (release before 200ms), the second keycode ("tap") is sent. If you press another key within the 200ms, the 'mod' behavior is also activated. @@ -40,3 +43,7 @@ You can configure a different tapping term in your keymap: } } ``` + +### Additional information + +The mod-tap is a [hold-tap](./hold-tap.md) under the hood with the "balanced" flavor and tapping_term_ms 200.