qmk_userspace/users/t4corun/features/tapping.c
Victor fdfc997c28
Cleanup and Adding more overrides
- Updated documentation and standardize identation formatting
- Added numpad key overrides to get function keys
- got rid of function layer
2024-05-10 00:00:37 -05:00

15 lines
No EOL
208 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:
return TAPPING_TERM;
}
}