qmk_userspace/users/t4corun/features/tapping.c
Victor 1fa52ae34c
Big cleanup and tune
- increased combo timer to 35
- I removed all the unnecessary defines and associated methods for
per keycode customizations like quick tap term, combo press in order, etc
2024-05-01 23:52:19 -05:00

13 lines
No EOL
259 B
C

#include "tapping.h"
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case NAV_0:
return TAPPING_TERM - 60;
default:
//uprintf("tapping term: %d \n", TAPPING_TERM);
return TAPPING_TERM;
}
}