summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorOkke Formsma <okke@formsma.nl>2020-11-06 14:40:56 +0100
committerPete Johanson <peter@peterjohanson.com>2020-11-22 21:06:42 -0500
commit6573483a1096a1ab91c459a30e08665b1161b8fa (patch)
tree897ebe3a81484716d3b012bc65b9a770fa7fd87f /docs
parent3bf01200f78113311f10d7964171f82795a55c03 (diff)
update errors in mod-tap docs
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/behaviors/mod-tap.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/docs/behaviors/mod-tap.md b/docs/docs/behaviors/mod-tap.md
index da8b438..6404a22 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.