try to tune tapping more

This commit is contained in:
Christoph Cullmann 2025-03-20 10:58:40 +01:00
parent 97dbf11902
commit 54a8361b3f
No known key found for this signature in database
3 changed files with 4 additions and 18 deletions

View file

@ -89,21 +89,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
};
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t* record) {
switch (keycode) {
// slower for slow fingers and meta keys
case CC_N:
case CC_S:
case CC_E:
case CC_I:
case CC_M:
case CC_Y:
return TAPPING_TERM_SLOW;
default:
return TAPPING_TERM;
}
}
#ifndef CC_NO_LED
void keyboard_post_init_user(void) {