aboutsummaryrefslogtreecommitdiff
path: root/docs/tap_hold.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tap_hold.md')
-rw-r--r--docs/tap_hold.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/tap_hold.md b/docs/tap_hold.md
index dbad48fd9..a343d0bc3 100644
--- a/docs/tap_hold.md
+++ b/docs/tap_hold.md
@@ -268,6 +268,10 @@ bool get_retro_tapping(uint16_t keycode, keyrecord_t *record) {
268} 268}
269``` 269```
270 270
271### Retro Shift
272
273[Auto Shift,](feature_auto_shift.md) has its own version of `retro tapping` called `retro shift`. It is extremely similar to `retro tapping`, but holding the key past `AUTO_SHIFT_TIMEOUT` results in the value it sends being shifted. Other configurations also affect it differently; see [here](feature_auto_shift.md#retro-shift) for more information.
274
271## Why do we include the key record for the per key functions? 275## Why do we include the key record for the per key functions?
272 276
273One thing that you may notice is that we include the key record for all of the "per key" functions, and may be wondering why we do that. 277One thing that you may notice is that we include the key record for all of the "per key" functions, and may be wondering why we do that.