mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-05 07:04:17 -04:00
12 lines
No EOL
269 B
C
12 lines
No EOL
269 B
C
#include "tapping.h"
|
|
|
|
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
|
|
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
|
|
switch (keycode) {
|
|
case NAV:
|
|
return TAPPING_TERM - 40;
|
|
|
|
default:
|
|
return TAPPING_TERM;
|
|
}
|
|
} |