]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Fix documentation about one shot tap toggle
authorJayesh Vora <45797218+jayeshvora72@users.noreply.github.com>
Fri, 15 Feb 2019 06:05:48 +0000 (11:35 +0530)
committerDrashna Jaelre <drashna@live.com>
Fri, 15 Feb 2019 17:02:06 +0000 (09:02 -0800)
Based on conversation with Drashna on Discord, we know that if ONE_SHOT_TAP_TOGGLE is 5, then tapping a one shot mod key 5 times holds the one shot key permanently, but to come out of this, you need to press the same key only once.

docs/feature_advanced_keycodes.md

index 95c47355ceb67db66bcbca849a9a85c30c74fcaa..9edb9fcebcccd3d418fc6e4aa849450ecfa76118 100644 (file)
@@ -146,7 +146,7 @@ Additionally, hitting keys five times in a short period will lock that key. This
 You can control the behavior of one shot keys by defining these in `config.h`:
 
 ```c
-#define ONESHOT_TAP_TOGGLE 5  /* Tapping this number of times holds the key until tapped this number of times again. */
+#define ONESHOT_TAP_TOGGLE 5  /* Tapping this number of times holds the key until tapped once again. */
 #define ONESHOT_TIMEOUT 5000  /* Time (in ms) before the one shot key is released */
 ```