diff options
author | zk-phi <zk-phi@users.noreply.github.com> | 2020-01-10 16:48:06 +0900 |
---|---|---|
committer | ridingqwerty <george.g.koenig@gmail.com> | 2020-01-10 02:48:06 -0500 |
commit | 7f388b65530b06779089be6cb4ddc56b2ecb36ff (patch) | |
tree | 19cf455d8ca3ae379304ea212d5b3d85917137b9 /docs/config_options.md | |
parent | e34af631c2c4b0c9406dead907bf74b460ee9f7f (diff) | |
download | qmk_firmware-7f388b65530b06779089be6cb4ddc56b2ecb36ff.tar.gz |
Add per-key IGNORE_MOD_TAP_INTERRUPT feature (#7838)
* Implement IGNORE_MOD_TAP_INTERRUPT_PER_KEY
- Add configurable option IGNORE_MOD_TAP_INTERRUPT_PER_KEY
- Add function get_ignore_mod_tap_interrupt iff the option is enabled
Unless IGNORE_MOD_TAP_INTERRUPT_PER_KEY is defined, this patch does not affect the resulting binary.
* Add documentation for IGNORE_MOD_TAP_INTERRUPT_PER_KEY
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 ea5a89295..0b83ed9e4 100644 --- a/docs/config_options.md +++ b/docs/config_options.md @@ -143,6 +143,8 @@ If you define these options you will enable the associated feature, which may in * `#define IGNORE_MOD_TAP_INTERRUPT` * 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. * See [Mod tap interrupt](feature_advanced_keycodes.md#ignore-mod-tap-interrupt) for details +* `#define IGNORE_MOD_TAP_INTERRUPT_PER_KEY` + * enables handling for per key `IGNORE_MOD_TAP_INTERRUPT` settings * `#define TAPPING_FORCE_HOLD` * makes it possible to use a dual role key as modifier shortly after having been tapped * See [Hold after tap](feature_advanced_keycodes.md#tapping-force-hold) |