fixed spelling errors in example 4 (#24318)
This commit is contained in:
parent
c05cafa3df
commit
63206aebcf
1 changed files with 3 additions and 3 deletions
|
@ -273,12 +273,12 @@ Now, at the bottom of your `keymap.c` file, you'll need to add the following:
|
||||||
* How to figure out tap dance state: interrupted and pressed.
|
* How to figure out tap dance state: interrupted and pressed.
|
||||||
*
|
*
|
||||||
* Interrupted: If the state of a dance is "interrupted", that means that another key has been hit
|
* Interrupted: If the state of a dance is "interrupted", that means that another key has been hit
|
||||||
* under the tapping term. This is typically indicitive that you are trying to "tap" the key.
|
* under the tapping term. This is typically indicative that you are trying to "tap" the key.
|
||||||
*
|
*
|
||||||
* Pressed: Whether or not the key is still being pressed. If this value is true, that means the tapping term
|
* Pressed: Whether or not the key is still being pressed. If this value is true, that means the tapping term
|
||||||
* has ended, but the key is still being pressed down. This generally means the key is being "held".
|
* has ended, but the key is still being pressed down. This generally means the key is being "held".
|
||||||
*
|
*
|
||||||
* One thing that is currenlty not possible with qmk software in regards to tap dance is to mimic the "permissive hold"
|
* One thing that is currently not possible with qmk software in regards to tap dance is to mimic the "permissive hold"
|
||||||
* feature. In general, advanced tap dances do not work well if they are used with commonly typed letters.
|
* feature. In general, advanced tap dances do not work well if they are used with commonly typed letters.
|
||||||
* For example "A". Tap dances are best used on non-letter keys that are not hit while typing letters.
|
* For example "A". Tap dances are best used on non-letter keys that are not hit while typing letters.
|
||||||
*
|
*
|
||||||
|
@ -290,7 +290,7 @@ Now, at the bottom of your `keymap.c` file, you'll need to add the following:
|
||||||
* Not a key that is used frequently to double tap, for example 'tab' is often double tapped in a terminal, or
|
* Not a key that is used frequently to double tap, for example 'tab' is often double tapped in a terminal, or
|
||||||
* in a web form. So 'tab' would be a poor choice for a tap dance.
|
* in a web form. So 'tab' would be a poor choice for a tap dance.
|
||||||
* Letters used in common words as a double. For example 'p' in 'pepper'. If a tap dance function existed on the
|
* Letters used in common words as a double. For example 'p' in 'pepper'. If a tap dance function existed on the
|
||||||
* letter 'p', the word 'pepper' would be quite frustating to type.
|
* letter 'p', the word 'pepper' would be quite frustrating to type.
|
||||||
*
|
*
|
||||||
* For the third point, there does exist the 'TD_DOUBLE_SINGLE_TAP', however this is not fully tested
|
* For the third point, there does exist the 'TD_DOUBLE_SINGLE_TAP', however this is not fully tested
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue