tweak tapping term

This commit is contained in:
Christoph Cullmann 2024-01-13 18:39:46 +01:00
parent e20bd529d5
commit 64bf274a4f
2 changed files with 3 additions and 2 deletions

View file

@ -38,7 +38,8 @@
// details see https://precondition.github.io/home-row-mods // details see https://precondition.github.io/home-row-mods
// the default is 200 // the default is 200
#define TAPPING_TERM 150 #define TAPPING_TERM 180
#define TAPPING_TERM_SLOW 260
#define TAPPING_TERM_PER_KEY #define TAPPING_TERM_PER_KEY
// Enable rapid switch from tap to hold, disables double tap hold auto-repeat. // Enable rapid switch from tap to hold, disables double tap hold auto-repeat.

View file

@ -74,7 +74,7 @@ uint16_t get_tapping_term(uint16_t keycode, keyrecord_t* record) {
case RGUI_T(KC_H): case RGUI_T(KC_H):
case LALT_T(KC_I): case LALT_T(KC_I):
case RALT_T(KC_A): case RALT_T(KC_A):
return TAPPING_TERM + 100; return TAPPING_TERM_SLOW;
default: default:
return TAPPING_TERM; return TAPPING_TERM;