qmk_userspace/users/t4corun/features/tapping.c
Victor 39ca5f2f73
Trying Callum after my Swoop got stuck in game mode
- reshuffling everything to somewhat match his keymap
- removed a bunch of combos
2024-05-05 20:27:25 -05:00

10 lines
No EOL
210 B
C

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