qmk_userspace/users/t4corun/features/tapping.c
Victor 90ea8d727a
putting keyboard combos back
- it felt too weird and clunky now I got used to combos
2024-05-24 00:35:26 -05:00

11 lines
No EOL
202 B
C

#include "tapping.h"
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case NAV:
return TAPPING_TERM - 40;
default:
return TAPPING_TERM;
}
}