qmk_userspace/users/t4corun/features/tapping.c
Victor 7c923a5c4a
Tuning and bug fixes
- Fixed bug that releasing double tap and bracket holds put another set of
brackets or double taps
- Added delay for NUM_0 Layer Tap
2024-05-09 22:57:42 -05:00

16 lines
No EOL
262 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;
}
}