You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

209 lines
7.5 KiB

2020 November 28 Breaking Changes Update (#11053) * Branch point for 2020 November 28 Breaking Change * Remove matrix_col_t to allow MATRIX_ROWS > 32 (#10183) * Add support for soft serial to ATmega32U2 (#10204) * Change MIDI velocity implementation to allow direct control of velocity value (#9940) * Add ability to build a subset of all keyboards based on platform. * Actually use eeprom_driver_init(). * Make bootloader_jump weak for ChibiOS. (#10417) * Joystick 16-bit support (#10439) * Per-encoder resolutions (#10259) * Share button state from mousekey to pointing_device (#10179) * Add hotfix for chibios keyboards not wake (#10088) * Add advanced/efficient RGB Matrix Indicators (#8564) * Naming change. * Support for STM32 GPIOF,G,H,I,J,K (#10206) * Add milc as a dependency and remove the installed milc (#10563) * ChibiOS upgrade: early init conversions (#10214) * ChibiOS upgrade: configuration file migrator (#9952) * Haptic and solenoid cleanup (#9700) * XD75 cleanup (#10524) * OLED display update interval support (#10388) * Add definition based on currently-selected serial driver. (#10716) * New feature: Retro Tapping per key (#10622) * Allow for modification of output RGB values when using rgblight/rgb_matrix. (#10638) * Add housekeeping task callbacks so that keyboards/keymaps are capable of executing code for each main loop iteration. (#10530) * Rescale both ChibiOS and AVR backlighting. * Reduce Helix keyboard build variation (#8669) * Minor change to behavior allowing display updates to continue between task ticks (#10750) * Some GPIO manipulations in matrix.c change to atomic. (#10491) * qmk cformat (#10767) * [Keyboard] Update the Speedo firmware for v3.0 (#10657) * Maartenwut/Maarten namechange to evyd13/Evy (#10274) * [quantum] combine repeated lines of code (#10837) * Add step sequencer feature (#9703) * aeboards/ext65 refactor (#10820) * Refactor xelus/dawn60 for Rev2 later (#10584) * add DEBUG_MATRIX_SCAN_RATE_ENABLE to common_features.mk (#10824) * [Core] Added `add_oneshot_mods` & `del_oneshot_mods` (#10549) * update chibios os usb for the otg driver (#8893) * Remove HD44780 References, Part 4 (#10735) * [Keyboard] Add Valor FRL TKL (+refactor) (#10512) * Fix cursor position bug in oled_write_raw functions (#10800) * Fixup version.h writing when using SKIP_VERSION=yes (#10972) * Allow for certain code in the codebase assuming length of string. (#10974) * Add AT90USB support for serial.c (#10706) * Auto shift: support repeats and early registration (#9826) * Rename ledmatrix.h to match .c file (#7949) * Split RGB_MATRIX_ENABLE into _ENABLE and _DRIVER (#10231) * Split LED_MATRIX_ENABLE into _ENABLE and _DRIVER (#10840) * Merge point for 2020 Nov 28 Breaking Change
3 years ago
  1. # Tap-Hold Configuration Options
  2. While Tap-Hold options are fantastic, they are not without their issues. We have tried to configure them with reasonable defaults, but that may still cause issues for some people.
  3. These options let you modify the behavior of the Tap-Hold keys.
  4. ## Tapping Term
  5. The crux of all of the following features is the tapping term setting. This determines what is a tap and what is a hold. And the exact timing for this to feel natural can vary from keyboard to keyboard, from switch to switch, and from key to key.
  6. You can set the global time for this by adding the following setting to your `config.h`:
  7. ```c
  8. #define TAPPING_TERM 200
  9. ```
  10. This setting is defined in milliseconds, and does default to 200ms. This is a good average for a majority of people.
  11. For more granular control of this feature, you can add the following to your `config.h`:
  12. ```c
  13. #define TAPPING_TERM_PER_KEY
  14. ```
  15. You can then add the following function to your keymap:
  16. ```c
  17. uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
  18. switch (keycode) {
  19. case SFT_T(KC_SPC):
  20. return TAPPING_TERM + 1250;
  21. case LT(1, KC_GRV):
  22. return 130;
  23. default:
  24. return TAPPING_TERM;
  25. }
  26. }
  27. ```
  28. ## Permissive Hold
  29. As of [PR#1359](https://github.com/qmk/qmk_firmware/pull/1359/), there is a new `config.h` option:
  30. ```c
  31. #define PERMISSIVE_HOLD
  32. ```
  33. This makes tap and hold keys (like Mod Tap) work better for fast typists, or for high `TAPPING_TERM` settings.
  34. If you press a Mod Tap key, tap another key (press and release) and then release the Mod Tap key, all within the tapping term, it will output the tapping function for both keys.
  35. For Instance:
  36. - `SFT_T(KC_A)` Down
  37. - `KC_X` Down
  38. - `KC_X` Up
  39. - `SFT_T(KC_A)` Up
  40. Normally, if you do all this within the `TAPPING_TERM` (default: 200ms) this will be registered as `ax` by the firmware and host system. With permissive hold enabled, this modifies how this is handled by considering the Mod Tap keys as a Mod if another key is tapped, and would registered as `X` (`SHIFT`+`x`).
  41. ?> If you have `Ignore Mod Tap Interrupt` enabled, as well, this will modify how both work. The regular key has the modifier added if the first key is released first or if both keys are held longer than the `TAPPING_TERM`.
  42. For more granular control of this feature, you can add the following to your `config.h`:
  43. ```c
  44. #define PERMISSIVE_HOLD_PER_KEY
  45. ```
  46. You can then add the following function to your keymap:
  47. ```c
  48. bool get_permissive_hold(uint16_t keycode, keyrecord_t *record) {
  49. switch (keycode) {
  50. case LT(1, KC_BSPC):
  51. return true;
  52. default:
  53. return false;
  54. }
  55. }
  56. ```
  57. ## Ignore Mod Tap Interrupt
  58. To enable this setting, add this to your `config.h`:
  59. ```c
  60. #define IGNORE_MOD_TAP_INTERRUPT
  61. ```
  62. Similar to Permissive Hold, this alters how the firmware processes inputs for fast typists. If you press a Mod Tap key, press another key, release the Mod Tap key, and then release the normal key, it would normally output the tapping function for both keys. This may not be desirable for rolling combo keys.
  63. Setting `Ignore Mod Tap Interrupt` requires holding both keys for the `TAPPING_TERM` to trigger the hold function (the mod).
  64. For Instance:
  65. - `SFT_T(KC_A)` Down
  66. - `KC_X` Down
  67. - `SFT_T(KC_A)` Up
  68. - `KC_X` Up
  69. Normally, this would send `X` (`SHIFT`+`x`). With `Ignore Mod Tap Interrupt` enabled, holding both keys are required for the `TAPPING_TERM` to register the hold action. A quick tap will output `ax` in this case, while a hold on both will still output `X` (`SHIFT`+`x`).
  70. ?> __Note__: This only concerns modifiers and not layer switching keys.
  71. ?> If you have `Permissive Hold` enabled, as well, this will modify how both work. The regular key has the modifier added if the first key is released first or if both keys are held longer than the `TAPPING_TERM`.
  72. For more granular control of this feature, you can add the following to your `config.h`:
  73. ```c
  74. #define IGNORE_MOD_TAP_INTERRUPT_PER_KEY
  75. ```
  76. You can then add the following function to your keymap:
  77. ```c
  78. bool get_ignore_mod_tap_interrupt(uint16_t keycode, keyrecord_t *record) {
  79. switch (keycode) {
  80. case SFT_T(KC_SPC):
  81. return true;
  82. default:
  83. return false;
  84. }
  85. }
  86. ```
  87. ## Tapping Force Hold
  88. To enable `tapping force hold`, add the following to your `config.h`:
  89. ```c
  90. #define TAPPING_FORCE_HOLD
  91. ```
  92. When the user holds a key after tapping it, the tapping function is repeated by default, rather than activating the hold function. This allows keeping the ability to auto-repeat the tapping function of a dual-role key. `TAPPING_FORCE_HOLD` removes that ability to let the user activate the hold function instead, in the case of holding the dual-role key after having tapped it.
  93. Example:
  94. - `SFT_T(KC_A)` Down
  95. - `SFT_T(KC_A)` Up
  96. - `SFT_T(KC_A)` Down
  97. - wait until the tapping term expires...
  98. - `SFT_T(KC_A)` Up
  99. With default settings, `a` will be sent on the first release, then `a` will be sent on the second press allowing the computer to trigger its auto repeat function.
  100. With `TAPPING_FORCE_HOLD`, the second press will be interpreted as a Shift, allowing to use it as a modifier shortly after having used it as a tap.
  101. !> `TAPPING_FORCE_HOLD` will break anything that uses tapping toggles (Such as the `TT` layer keycode, and the One Shot Tap Toggle).
  102. For more granular control of this feature, you can add the following to your `config.h`:
  103. ```c
  104. #define TAPPING_FORCE_HOLD_PER_KEY
  105. ```
  106. You can then add the following function to your keymap:
  107. ```c
  108. bool get_tapping_force_hold(uint16_t keycode, keyrecord_t *record) {
  109. switch (keycode) {
  110. case LT(1, KC_BSPC):
  111. return true;
  112. default:
  113. return false;
  114. }
  115. }
  116. ```
  117. ## Retro Tapping
  118. To enable `retro tapping`, add the following to your `config.h`:
  119. ```c
  120. #define RETRO_TAPPING
  121. ```
  122. Holding and releasing a dual function key without pressing another key will result in nothing happening. With retro tapping enabled, releasing the key without pressing another will send the original keycode even if it is outside the tapping term.
  123. For instance, holding and releasing `LT(2, KC_SPACE)` without hitting another key will result in nothing happening. With this enabled, it will send `KC_SPACE` instead.
  124. For more granular control of this feature, you can add the following to your `config.h`:
  125. ```c
  126. #define RETRO_TAPPING_PER_KEY
  127. ```
  128. You can then add the following function to your keymap:
  129. ```c
  130. bool get_retro_tapping(uint16_t keycode, keyrecord_t *record) {
  131. switch (keycode) {
  132. case LT(2, KC_SPACE):
  133. return true;
  134. default:
  135. return false;
  136. }
  137. }
  138. ```
  139. ## Why do we include the key record for the per key functions?
  140. One 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.
  141. Well, it's simple really: customization. But specifically, it depends on how your keyboard is wired up. For instance, if each row is actually using a row in the keyboard's matrix, then it may be simpler to use `if (record->event.row == 3)` instead of checking a whole bunch of keycodes. Which is especially good for those people using the Tap Hold type keys on the home row. So you could fine tune those to not interfere with your normal typing.
  142. ## Why is there no `*_kb` or `*_user` functions?!
  143. Unlike many of the other functions here, there isn't a need (or even reason) to have a quantum or keyboard level function. Only user level functions are useful here, so no need to mark them as such.