diff options
author | ridingqwerty <george.g.koenig@gmail.com> | 2020-02-25 13:25:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-25 13:25:52 -0500 |
commit | b949343b783da729b1dfebd38507cc56a8cd12e3 (patch) | |
tree | 6f35b98c798d071c5ce6603f62d5088da760b5d0 /docs/config_options.md | |
parent | f6111d49bbfeb90fdb86c4595ba339590b364da7 (diff) | |
download | qmk_firmware-b949343b783da729b1dfebd38507cc56a8cd12e3.tar.gz qmk_firmware-b949343b783da729b1dfebd38507cc56a8cd12e3.zip |
New feature: PERMISSIVE_HOLD_PER_KEY (#7994)
* Implement 'PERMISSIVE_HOLD_PER_KEY'
* Document 'PERMISSIVE_HOLD_PER_KEY'
Co-authored-by: GeorgeKoenig <35542036+GeorgeKoenig@users.noreply.github.com>
Diffstat (limited to 'docs/config_options.md')
-rw-r--r-- | docs/config_options.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/config_options.md b/docs/config_options.md index d048d1767..df4b67dc1 100644 --- a/docs/config_options.md +++ b/docs/config_options.md | |||
@@ -142,6 +142,8 @@ If you define these options you will enable the associated feature, which may in | |||
142 | * `#define PERMISSIVE_HOLD` | 142 | * `#define PERMISSIVE_HOLD` |
143 | * makes tap and hold keys trigger the hold if another key is pressed before releasing, even if it hasn't hit the `TAPPING_TERM` | 143 | * makes tap and hold keys trigger the hold if another key is pressed before releasing, even if it hasn't hit the `TAPPING_TERM` |
144 | * See [Permissive Hold](feature_advanced_keycodes.md#permissive-hold) for details | 144 | * See [Permissive Hold](feature_advanced_keycodes.md#permissive-hold) for details |
145 | * `#define PERMISSIVE_HOLD_PER_KEY` | ||
146 | * enabled handling for per key `PERMISSIVE_HOLD` settings | ||
145 | * `#define IGNORE_MOD_TAP_INTERRUPT` | 147 | * `#define IGNORE_MOD_TAP_INTERRUPT` |
146 | * makes it possible to do rolling combos (zx) with keys that convert to other keys on hold, by enforcing the `TAPPING_TERM` for both keys. | 148 | * makes it possible to do rolling combos (zx) with keys that convert to other keys on hold, by enforcing the `TAPPING_TERM` for both keys. |
147 | * See [Mod tap interrupt](feature_advanced_keycodes.md#ignore-mod-tap-interrupt) for details | 149 | * See [Mod tap interrupt](feature_advanced_keycodes.md#ignore-mod-tap-interrupt) for details |